/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222222;
    color: #ffffff;
    padding: 1.25rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-consent-banner strong {
    color: #82bc41;
    font-weight: 600;
}

.cookie-consent-banner .small {
    font-size: 0.875rem;
    opacity: 0.9;
}

.cookie-consent-banner a {
    color: #ffffff;
}

.cookie-consent-banner a:hover {
    color: #82bc41;
}

.cookie-consent-banner .btn-light {
    background-color: #82bc41;
    border-color: #82bc41;
    color: #ffffff;
    font-weight: 600;
}

.cookie-consent-banner .btn-light:hover {
    background-color: #72ac31;
    border-color: #72ac31;
    color: #ffffff;
}

.cookie-consent-banner .btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

.cookie-consent-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-banner p {
        font-size: 0.85rem;
    }
    
    .cookie-consent-banner .small {
        font-size: 0.8rem;
    }
    
    .cookie-consent-banner .btn {
        width: 100%;
        font-size: 0.85rem;
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .cookie-consent-banner .btn:last-child {
        margin-bottom: 0;
    }
}
