#consent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#consent-popup .inner-container {
    background-color: #222; /* Nicht-transparenter weißer Hintergrund */
    border: 1px solid #333; /* Rahmen */
    padding: 20px;
    width: 80%; /* Sie können die Breite nach Bedarf anpassen */
    max-width: 600px;
    text-align: center;
}

#consent-popup button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#consent-popup button:hover {
    background-color: #555;
}
