/* Sprach-Popup-Design */
#language-popup {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

#language-popup.visible {
    display: block; /* Popup wird sichtbar, wenn die Klasse 'visible' hinzugefügt wird */
}

/* Popup-Inhalt */
.popup-content { /* Korrigiert von #popup-content zu .popup-content */
    width: 40%;
    border: 0.1rem solid white;
    background-color: #000000;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 80%;
    text-align: center;
}

.language-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Button-Stile */
button.primary {
    cursor: pointer;
    border: 0.1rem solid white;
    background: none;
    color: white;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}

button.primary:hover {
    background-color: rgb(29, 29, 29);
}

button.primary {
    height: 3rem;
    width: 5rem;
}

@media (orientation: portrait) {
    #cookie-banner-content {
        width: 70%;
    }
}
