/* Cookie Consent Banner Styles - CoinMENA */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #667eea;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease-out;
}

.dark #cookieBanner {
    background: #1f2937;
    border-top-color: #764ba2;
    color: white;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-hide {
    animation: slideDown 0.3s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    #cookieBanner {
        padding: 1rem;
    }
    
    #cookieBanner .flex {
        flex-direction: column;
    }
    
    #cookieBanner button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

