/* Cookie Consent Banner Styles */
#cookieConsent {
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    font-size: 0.9rem;
}

#cookieConsent a {
    color: var(--bs-primary);
    text-decoration: underline;
}

#cookieConsent a:hover {
    text-decoration: none;
}

#cookieConsent .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
}

#cookieConsent .btn-outline-light:hover {
    color: var(--bs-dark) !important;
}

/* Animation for cookie banner */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieConsent.show {
    animation: slideInUp 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #cookieConsent {
        text-align: center;
    }
    
    #cookieConsent .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #cookieConsent .btn:last-child {
        margin-bottom: 0;
    }
}
