/* Cookie Consent Banner Styles */

.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
}

.cookie-alert .container {
    max-width: 1200px;
}

.cookie-alert p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-alert a {
    text-decoration: underline;
}

.cookie-alert .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
}

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

.cookie-alert {
    animation: slideUp 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-alert .container {
        padding: 15px;
    }
    
    .cookie-alert .btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .cookie-alert .text-md-end {
        text-align: left !important;
    }
}