/* --- Cookie Banner Styles (Footer) --- */
#cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1C222E;
    color: #eee;
    padding: 20px 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-top: 1px solid #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#cookie-banner-container.fade-out {
    display: flex;
    opacity: 0;
    transform: translateY(100%);
}

.cookie-banner-content {
    flex-grow: 1;
    margin-bottom: 20px;
    max-width: 900px;
}

.banner-headline {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-text {
    font-size: 0.95em;
    margin-bottom: 0;
}


.cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.cookie-banner-actions .btn {
    background: #0678b1;
    color: #ffffff;
}
.cookie-banner-actions .btn:hover {
    background: #ffffff;
    color: #1c222e;
    filter: contrast(100%);
}
.btn.btn-border {
    background: none;
    border: 3px solid #0678b1;
}

