body {
  background-color: #fdf5e6;

  /* Styling für oberste Zeile ("Input-Feld", "Lösch-Button", Button "Zurück zur Startseite" als flex */
  .topRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
  }

  /* Styling für Gruppe "Input-Feld" und "Lösch-Button" als flex */
  .inputWrapper {
    display: flex;
    border: 2px solid #8c632c;
    padding: 5px;
    border-radius: 8px;
    gap: 10px;
    background-color: rgb(218, 213, 213);
  }

  /* Styling für Eingabefeld "im Namen suchen ..." */
  #searchInput {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  /* Styling für Button "Suchfeld leeren" */
  .btn_leeren {
    padding: 8px 12px;
    border-radius: 5px;
    border: 2px solid #040009;
    color: #000201;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
    background-color: rgb(203, 208, 229);
  }

  .btn_leeren:hover {
    background-color: #cdb38b;
  }

  /* Styling für Button "Zurück zur Startseite" */
  .btn_zurück {
    border: 2px solid #040009; /* schwarzer Rahmen */
    padding: 8px 12px;
    border-radius: 5px;
    background-color: rgb(203, 208, 229);
    color: #000201;
    cursor: pointer;
    margin-left: 10px; /* Abstand*/
  }

  .btn_zurück:hover {
    background-color: #cdb38b;
  }
}
/* Styling für die Tabelle */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif, arial;
  font-size: 14px;
  text-align: left;
}
/* Styling für den Tabellenkopf (th = table header) */
th {
  border: 1px solid black;
  padding: 8px;
  background-color: rgb(218, 213, 213);
  cursor: pointer;
}
/* Styling für die Tabellenzeilen (td = table data) */
td {
  border: 1px solid black;
  padding: 6px;
  color: blue;
}

/* Styling für wechselnde Farben der aufeinander folgenden Zeilen (ungerade Zeilen) */
tr.odd {
  background-color: #eef3f8 !important; /* !important = höhere Priorität setzen */
  color: rgb(5, 5, 254);
}

/* Styling für wechselnde Farben der aufeinander folgenden Zeilen (gerade Zeilen) */
tr.even {
  background-color: #f7f9fb !important; /* !important = höhere Priorität setzen */
  color: rgb(0, 0, 11);
}

/* Styling für die vom Cursor überfahrene Zeile (tr) */
tbody tr:hover {
  background-color: #faedd4 !important; /* !important = höhere Priorität setzen */
}

/* Styling für die vom Cursor überfahrene Zelle (td) */
tbody td:hover {
  background-color: #efdfc6;
}

/* Styling für Button "Kopieren" in Tabellenspalte "Aktion" */
button {
  cursor: pointer;
  background-color: rgb(203, 208, 229);
  border-radius: 4px;
}

button:hover {
  background-color: #cdb38b;
}
