/* Cookie-Consent-Banner: eigenständiges CSS statt Tailwind-Klassen, weil
   Tailwinds Build nur *.html scannt (siehe tailwind.config.js content-Glob) -
   Klassen, die nur in cookie-consent.js vorkämen, würden nicht mit
   kompiliert und liefen ins Leere. */

#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #091022;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    font-family: Manrope, Arial, sans-serif;
}

#cookie-consent-banner[hidden] {
    display: none;
}

.cookie-consent-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .cookie-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}

.cookie-consent-text a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-buttons button {
    flex: 1;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .cookie-consent-buttons button {
        flex: none;
    }
}

#cookie-consent-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

#cookie-consent-accept {
    background: #b5007c;
    border: 1px solid #b5007c;
    color: #ffffff;
}

