﻿#cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

#cookieBanner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f1f1f1;
    width: 90%; /* Standardbreite für mobile Geräte */
    max-width: 500px; /* Begrenzung für größere Bildschirme */
    padding: 20px;
    text-align: center;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Abgerundete Ecken */
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5; /* Erhöht die Lesbarkeit */
    color: #333; /* Textfarbe */
}

#cookieBanner button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#cookieBanner button:hover {
    background-color: #0056b3;
}