/* css/components/cookie-banner.css */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 31, 83, 0.9);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    z-index: 1000;
    border-top: 1px solid #4f46e5;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-text {
    font-size: 0.9rem;
    color: #d1d5db;
}

.cookie-banner-text a {
    color: #a5b4fc;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

#cookie-accept-btn {
    background-color: #22d3ee;
    color: #3730a3;
}
#cookie-accept-btn:hover {
    background-color: #67e8f9;
}

#cookie-decline-btn {
    background-color: #4b5563;
    color: #e5e7eb;
}

#cookie-decline-btn:hover {
    background-color: #6b7280;
}