/* Overlay für die Abdunklung */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dunkler Hintergrund */
    backdrop-filter: blur(5px); /* Weicher Unschärfeeffekt */
    z-index: 1050;
    display: none; /* Standardmäßig ausgeblendet */
}

/* Cookie-Banner */
#cookie-banner {
    position: fixed;
    top: 50%; /* Zentrierung vertikal */
    left: 50%; /* Zentrierung horizontal */
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1100;
    display: none; /* Standardmäßig ausgeblendet */
}

/* Buttons im Cookie-Banner */
#cookie-banner button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin: 10px 5px;
}

#cookie-banner button:hover {
    background-color: #0056b3;
}