/* cookie_style.css */
body {
    font-family: Arial, sans-serif;
    /* margin: 0; Wurde auskommentiert, da Ihre Seite evtl. eigene Body-Margins hat */
    /* padding: 0; */
    line-height: 1.6;
}

#cookieConsentContainer {
    position: fixed; /* Bleibt beim Scrollen sichtbar */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Dunkelblau-Grau */
    color: #ecf0f1; /* Helles Grau für Text */
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000; /* Stellt sicher, dass es über anderen Elementen liegt */
    display: none; /* Standardmäßig ausgeblendet, wird per JS angezeigt */
    box-sizing: border-box;
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner-content h2 {
    margin-top: 0;
    color: #ffffff; /* Weißer Titel */
    font-size: 1.5em;
}

.cookie-banner-content p {
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: #3498db; /* Helleres Blau für Links */
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    color: #5dade2;
}

.cookie-banner-actions button {
    background-color: #3498db; /* Blau */
    color: white;
    border: none;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-banner-actions button:hover {
    background-color: #2980b9;
}

#cookieAcceptNecessary {
    background-color: #7f8c8d; /* Grau */
}
#cookieAcceptNecessary:hover {
    background-color: #6c7a7d;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .cookie-banner-content {
        text-align: left;
    }
    .cookie-banner-actions button {
        display: block;
        width: 100%;
        margin: 10px 0;
        font-size: 1em;
    }
}