/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 3px solid #0078D4;
    animation: slideUp 0.4s ease-out;
}

@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;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.consent-text {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.consent-text i {
    color: #00BCF2;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.consent-link {
    color: #00BCF2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.consent-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.consent-actions {
    flex-shrink: 0;
}

.consent-accept-btn {
    background: linear-gradient(135deg, #0078D4 0%, #00BCF2 100%);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
}

.consent-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
    background: linear-gradient(135deg, #106ebe 0%, #0ea5e9 100%);
}

.consent-accept-btn:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .consent-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .consent-text {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .consent-accept-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Ensure page content doesn't get hidden behind banner */
body.consent-banner-visible {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body.consent-banner-visible {
        padding-bottom: 120px;
    }
}
