/**
 * Cookie Consent Banner Styles
 */
#cookie-consent-banner {
    position: fixed;
    bottom: -100%; /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    padding: 1.5rem;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 4px solid #0066cc;
    font-family: 'Figtree', sans-serif;
}

#cookie-consent-banner.show {
    bottom: 0;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f233a;
    margin: 0 0 0.5rem 0;
}

.cookie-text p {
    font-size: 0.95rem;
    color: #5c6483;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #0052a3;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #cbd5e0;
    color: #5c6483;
}

.cookie-btn-decline:hover {
    border-color: #a0aec0;
    color: #2d3748;
    background-color: #f7fafc;
}

#cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    line-height: 1;
}

#cookie-close:hover {
    color: #2d3748;
}

@media (max-width: 768px) {
    .cookie-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
