/* Grundlayout */
body {
  font-family: Arial, sans-serif;
  background-color: #000950;  /* Dunkleres Blau */
  color: #ffffff;             /* Weißer Text */
}

h1, h2 {
  text-align: center;
  color: #ffffff;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.form-container {
  flex: 1 1 300px;
}

/* Alle Felder: Inputs, Dropdowns, Textareas */
textarea, input, select {
  width: 100%;
  max-width: 400px;
  background-color: #001170;  /* Hellere Abstufung */
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 5px;
  margin-bottom: 5px;
}

/* Rotor-Status Anzeige */
#rotorStatus {
  margin-top: 10px;
  font-family: monospace;
  text-align: left;
  display: inline-block;
}

/* Ergebnisfeld */
#outputText {
  width: 80%;
  max-width: 400px;
  height: 100px;
  background-color: #001170;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 5px;
}

/* Buttons */
button {
  background-color: #002190;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 6px 12px;
  cursor: pointer;
  margin: 3px;
}

button:hover {
  background-color: #0031b0;
}

/* Info-Box rechts */
.info-box {
  flex: 1 1 300px;
  border: 1px solid #ffffff;
  padding: 10px;
  font-size: 0.8rem;
  max-width: 500px;
  overflow-x: auto;
}

.info-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  background-color: #001170;  /* Gleiche Abstufung für Tabellen */
}

.info-box th,
.info-box td {
  border: 1px solid #ffffff;
  padding: 4px 6px;
}

.info-box th {
  background: #002190;         /* Kopfzeile etwas heller */
  color: #ffffff;
}

.info-box td {
  color: #ffffff;
}

.info-box .important {
  color: #ff5050;
  font-weight: bold;
}

.intro-text {
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
  font-size: 0.95rem;
  text-align: center;
}

.highlight {
  color: #ff5050; /* kräftiges Rot */
  font-weight: bold;
}

p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000950; /* gleicher Dunkelblau-Hintergrund */
  color: #ffffff;
  font-size: 0.85rem;
  border-top: 1px solid #ffffff;
  margin-top: 40px;
}

.page-footer a {
  color: #ffffff;
  text-decoration: underline;
}

.page-footer a:hover {
  text-decoration: none;
}
