.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    display: <?php echo $consent_given ? 'none' : 'block'; ?>;
    z-index: 1000;
}

/* Daumenabdruck-Symbol */
.consent-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 20%;
    cursor: pointer;
    z-index: 1001;
}

.consent-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    color:yellow;
}

.consent-btn
{
    font-size: 0.9rem; /* Größere Schrift */
    border-radius: 10px; /* Abgerundete Ecken */
    background-color:#C1CDCD;
    transition: background 0.3s, transform 0.2s; /* Animation für weichen Effekt */
    color:black;
}

.consent-btn:hover {
    background: #B0C4DE; /* Dunkleres Grün beim Hover */
    transform: scale(1.05); /* Leichtes Vergrößern */
    color:#4169e1;
}

#datenschutz {
z-index: 1100 !important; /* Standard Bootstrap Modal hat 1050 */
}

.text-justify {
    text-align: justify;
    font-size: small;
}

.text-justify.text-gray {
    color: rgb(99, 99, 100); /* Oder eine andere gewünschte Farbe */
}

/* SLIDER ################################################ */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Horizontale Zentrierung */
    height: 100%; /* Sicherstellen, dass der Container die volle Höhe hat */
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px; /* Kleinere Breite */
    height: 24px; /* Kleinere Höhe */
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: gray;
    transition: .4s;
    border-radius: 24px; /* Abgerundete Ecken */
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px; /* Kleinere Höhe des Schiebereglers */
    width: 20px; /* Kleinere Breite des Schiebereglers */
    left: 2px; /* Anpassung für kleinere Breite */
    bottom: 2px; /* Anpassung für kleinere Höhe */
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: green;
}

input:checked + .slider:before {
    transform: translateX(16px); /* Kleinere Bewegung */
}

/* Disable styles */
input:disabled + .slider {
    background-color: lightgray;
    cursor: not-allowed;
}
/* SLIDER ################################################ */