/* Cookie consent banner styles */

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-banner .btn-accept {
    background-color: var(--charcoal, #2C2C2C);
    border-color: var(--charcoal, #2C2C2C);
    color: #fff;
}

.cookie-consent-banner .btn-accept:hover {
    background-color: #444444;
    border-color: #444444;
}

.cookie-consent-banner .btn-reject {
    color: #6c757d;
    border-color: #6c757d;
}

.cookie-consent-banner .btn-reject:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

/* Fade-out animation */
.cookie-consent-hide {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
}

/* Responsive: full-width bottom bar on mobile */
@media (max-width: 576px) {
    .cookie-consent-banner {
        left: 0;
        right: 0;
        bottom: 0;
        max-width: none;
        border-radius: 0;
        border-top: 1px solid #dee2e6;
    }
}
