/* styles für cookiepopup.css */
#cookiePopup {
    position: fixed;
    top: 20px; /* Leichter Abstand vom oberen Rand */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px; /* Maximale Breite */
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Standardmäßig versteckt */
    z-index: 1000;
    text-align: center; /* Zentriert alle Inhalte im Popup */
}

/* Container für die Buttons */
#cookiePopup button {
    background: linear-gradient(to right, #4CAF50, #45a049);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
}

#cookiePopup button:hover {
    background: linear-gradient(to right, #45a049, #4CAF50);
    transform: translateY(-2px);
}

#cookiePopup p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

#cookieOptions {
    margin-top: 20px;
}

#cookieOptions label {
    display: block;
    margin-bottom: 10px;
}
