/* Stil für das Cookie-Banner Overlay */
#cookie-banner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stil für das Cookie-Banner */
#cookie-banner {
    position: fixed;
    top: 89%; /* Anpassung auf 50% für die vertikale Mitte */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #55b7f9;
    opacity: 97%;
    border-radius: 10px;
    padding: 10px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center; /* Zentrierung des Inhalts */
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

#cookie-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Abstand über den Knöpfen */
}

#cookie-accept {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
}

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