/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 95, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    border-top: 3px solid #3b5f8f;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookie-banner.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
}

.cookie-content a {
    color: #8bb3ff;
    text-decoration: none;
    border-bottom: 1px solid #8bb3ff;
    transition: color 0.2s;
}

.cookie-content a:hover {
    color: #aacfff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

#accept-cookies,
#reject-cookies {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

#accept-cookies {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: 1px solid #1e40af;
}

#accept-cookies:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#reject-cookies {
    background: transparent;
    color: #8bb3ff;
    border: 1px solid #8bb3ff;
}

#reject-cookies:hover {
    background: rgba(139, 179, 255, 0.1);
    color: #aacfff;
    border-color: #aacfff;
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    #accept-cookies,
    #reject-cookies {
        flex: 1;
    }
}
