.bg-dark {
    //background: linear-gradient(to right, #8e2035, #b34958, #b34958);
    background-color: #FFFFFF;
}

.navbar {
    // background-color: #ffccd6 !important;
    background: linear-gradient(to right, #FFFFFF, #9738ba, #8b0ab8) !important;
    border-bottom: 1px solid #8e2035;
}

.tabbox button {
    color: #8e2035 !important;
}

.navbar a {
    color: #8e2035;
}

.navbar a:hover a.active a.active:hover  {
    color: #8e2035;
}

#suggestions {
    list-style-type: none;
    padding: 0;
    background-color: #FFFFFF;
}
#suggestions li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
#suggestions li:hover {
    background-color: #f0f0f0;
}

/* Container für Checkbox und Label */
.checkbox-container {
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    gap: 10px; /* Abstand zwischen Checkbox und Label */
    margin-bottom: 5px;
}

/* Basis-Style für die Checkbox */
input[type="checkbox"] {
    -webkit-appearance: none; /* Entfernt das Standard-Checkbox-Styling in Webkit-basierten Browsern */
    -moz-appearance: none; /* Entfernt das Standard-Checkbox-Styling in Firefox */
    appearance: none; /* Entfernt das Standard-Checkbox-Styling */
    width: 28px; /* Breite der Checkbox */
    height: 28px; /* Höhe der Checkbox */
    border: 2px solid #007BFF; /* Rahmenfarbe */
    border-radius: 4px; /* Abgerundete Ecken */
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

/* Hintergrundfarbe und Rahmenfarbe, wenn die Checkbox aktiviert ist */
input[type="checkbox"]:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

/* Pseudoelement für den Haken */
input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
}

/* Der grüne Schimmer-Effekt */
.highlight-success {
    box-shadow: 0 0 5px 2px green;
    transition: box-shadow 0.5s ease-in-out;
}

/* Galerie-Styling */
.gallery img {
    cursor: pointer;
    transition: 0.3s;
    width: 200px;
    height: 200px;
    margin: 10px;
}

/* Modales Fenster für die Galerie */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Großes Bild in der Modal */
.gallery-modal img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

/* Schließen-Button */
.close-gallery {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.table-container {
    overflow-x: auto; /* Horizontales Scrollen aktivieren */
    -webkit-overflow-scrolling: touch; /* Weiches Scrollen für mobile Geräte */
}

table {
    width: 100%; /* Optional: Breite der Tabelle */
    border-collapse: collapse; /* Tabellenränder zusammenführen */
}






