/* style.css */

body {
  margin: 0;
  padding: 10px; /* Beispiel-Padding für den Body */
  font-family: Arial, sans-serif;
  background-color: #f2f2f2; /* Grauer Hintergrund */
}
/* style.css */

/* Stil für den neuen Container außerhalb des Hauptcontainers */
.info-container {
  width: 95%;
  height: 120px;
  margin: 0 auto; /* Zentrierung des Containers */
  background-color: #fffdfd; /* Weiße Hintergrundbox */
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Schatten für die Box */
}
.button-container {
  display: flex;
  justify-content: flex-start; /* Alle Buttons linksbündig ausrichten */
  align-items: center; /* Zentriert die Buttons vertikal */
}

.left-button {
  margin-right: auto; /* Alle verfügbaren Platz zwischen diesem Button und den anderen Buttons */
}

/* Stil für die Buttons */
.button {
  padding: 8px 16px; /* Anpassung der Polsterung */
  margin-left: 5px; /* Abstand zwischen den Buttons */
  border: none;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  float: right; /* Float auf der rechten Seite */
}

.blue {
  background-color: #3498db; /* Blauer Button */
}

.red {
  background-color: #e74c3c; /* Roter Button */
}

.gray {
  background-color: #95a5a6; /* Grauer Button */
}

/* Leeren Float aufheben */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.container {
  width: 95%;
  height: 680px;
  margin: 5px auto; /* Zentrierung der Box und Lücke zum Rand oben */
  background-color: #fff; /* Weiße Hintergrundbox */
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Schatten für die Box */
  /* Neue Regel für Zentrierung */
  display: flex;
  flex-direction: column;
  overflow: auto; /* Hinzufügen einer Scrollbar bei Bedarf */
}
/* Neue CSS-Klasse für den Footer */
.footer-container {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  text-align: center; /* Zentrierung des Inhalts horizontal */
  padding: 10px 0; /* Ändern Sie den Innenabstand nach Bedarf */
}

.footer-container a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

/* CSS-Stil für die Karte */
#map {
  width: 100%; /* Die Karte soll die volle Breite des Containers einnehmen */
  height: 100%; /* Die Karte soll die volle Höhe des Containers einnehmen */
  position: absolute; /* Absolute Positionierung innerhalb des Containers */
  top: 0; /* Oben anordnen */
  left: 0; /* Links anordnen */
}
/* Stil für die Willkommensnachricht und den Accountnamen in der linken oberen Ecke */
.left-top {
  position: relative;
}
/* Stil für die rechte obere Ecke mit Sessiondauer und Logout-Button */
.right-top {
  position: relative;
  top: -90px;
  right: 10px;
  text-align: right;
}
/* Stil für den H1-Titel */
h1 {
  font-size: 24px;
}

/* Stil für den Account-Text */
p {
  font-size: 16px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.col {
  width: calc(
    150% - 5px
  ); /* Breite der Spalten auf 50%, um Platz für den Rand zu lassen */
}

.col label {
  display: block;
  margin-bottom: 5px;
}

.col input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.form-container {
  display: flex;
  flex-wrap: wrap;
}

.form-field1 {
  columns: 1;
}
.form-field2 {
  columns: 2;
}
.form-field3 {
  columns: 3;
}
.form-field4 {
  columns: 4;
}
.form-field5 {
  columns: 5;
}
/* CSS-Regeln für die Tabelle */
.styled-table {
  border-collapse: collapse;
  width: 100%; /* Volle Breite innerhalb des Containers */
  table-layout: fixed; /* Feste Tischlayout */
}

.styled-table th,
.styled-table td {
  border: 2px solid #181717;
  text-align: center;
  padding: 8px;
  overflow: hidden; /* Überlauf verstecken */
  text-overflow: ellipsis; /* Text mit Ellipsen anzeigen, wenn er nicht vollständig angezeigt wird */
  word-wrap: break-word; /* Zeilenumbruch für lange Wörter */
}

.styled-table th {
  background-color: #f2f2f2;
}

/* Hinzufügen von Zeilenfarben (abwechselnd) */
.styled-table tr:nth-child(even) {
  background-color: #c0c0c0;
}

.styled-table tr:hover {
  background-color: #e0e0e0;
}

.styled-table th,
.styled-table td {
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: #000000;
}
.styled-table th,
.styled-table td {
  text-align: center;
}

/* Medienabfrage für Mobilgeräte */
@media screen and (max-width: 600px) {
  .form-field {
    flex-basis: calc(100% - 10px); /* Auf volle Breite auf Mobilgeräten */
    margin-right: 0; /* Kein Abstand zwischen den Formularfeldern */
  }
}

/* Media Query für Mobilgeräte mit maximaler Breite von 600px */
@media screen and (max-width: 600px) {
  .container {
    width: 90%; /* Vollständige Breite auf Mobilgeräten */
    padding: 10px; /* Geringeres Padding auf Mobilgeräten */
  }

  .left-top {
    position: relative;
    top: -60;
    left: 0;
    text-align: left;
  }
  /* Anpassung der Positionierung für die rechte obere Ecke */
  .right-top {
    position: relative;
    top: -60;
    right: 0;
    text-align: right;
  }

  /* Anpassung für den H1-Titel auf Mobilgeräten */
  h1 {
    font-size: 20px; /* Kleinere Schriftgröße auf Mobilgeräten */
  }

  /* Anpassung für den Account-Text auf Mobilgeräten */
  p {
    font-size: 14px; /* Kleinere Schriftgröße auf Mobilgeräten */
  }

  /* Anpassung für die Buttons auf Mobilgeräten */
  .button {
    padding: 8px 16px; /* Kleinere Polsterung auf Mobilgeräten */
    font-size: 14px; /* Kleinere Schriftgröße auf Mobilgeräten */
  }
}
.separator {
  height: 4px; /* Höhe des Balkens */
  background-color: #696969; /* Farbe des Balkens (blau) */
  margin: 5px auto; /* Abstand oben und unten */
  border-radius: 10px; /* Abgerundete Ecken */
  width: 95%; /* Länge des Balkens (z.B. 95% des übergeordneten Containers) */
}
.right-top {
  position: relative; /* Positionierung relativ für das Logo */
  top: 0; /* Kann angepasst werden, um das Logo vertikal auszurichten */
  right: 10px; /* Abstand vom rechten Rand */
  text-align: right; /* Inhalt rechtsbündig ausrichten */
}

.logo {
  max-height: 60px; /* Maximale Höhe des Logos (oder nach Bedarf anpassen) */
  /* Optional: Füge hier mehr CSS hinzu, um das Logo weiter anzupassen */
}

#duplicateStatus {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: #333;
}
/* Stil für den Kreis */
#statusCircle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: green; /* Standardmäßig grün */
  display: inline-block;
}
