/* ===== Abdunkelung ===== */
#consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
}

/* ===== Banner ===== */
#consent-banner {
    width: 100%;
    background: white;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

#consent-banner h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Text */
#consent-banner p {
    font-size: 1rem;
    margin-bottom: 20px;
}

#error-message {
    font-size: 2rem;
    border: 2px solid red;
    color: red;
}

/* Buttons */
.consent-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.consent-buttons button {
    padding: 10px 22px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

/* JA */
.btn-yes {
    background: #2ecc71;
    color: white;
}

.btn-yes:hover {
    background: #27ae60;
}

/* NEIN */
.btn-no {
    background: #e74c3c;
    color: white;
}

.btn-no:hover {
    background: #c0392b;
}

