body {
  font-family: var(--font-family-base);
  margin: 0;
  padding: 0;
  padding-bottom: 60px;
  background-color: var(--color-background);
  /* color: var(--color-text); */
  font-size: var(--font-size-base);
}

h1, h2, h3, h4 {
  color: var(--color-heading);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

.hidden {
  display: none; /* Element ausblenden */
}

a, a:hover, a:visited {
  color: var(--color-link);

}

.sys_messages {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #000;
  background-color: #6ed37c;
  border-radius: 10px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Seitentitel */
.page_title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Server-Auswahl */
.server-select-wrapper {
  margin-bottom: 2rem;
}

.server-select-wrapper label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.server-select-wrapper select {
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.server-select-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.server-select-col {
  max-width: 100%;
}

/* Optional: bei sehr schmalen Bildschirmen untereinander */
@media screen and (max-width: 768px) {
  .server-select-row {
    flex-direction: column;
  }
}
