/* =====================================================
   Cookie Consent Banner
   Standard implementation for all websites
   ===================================================== */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #0066cc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 10px 16px;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cookie-banner-visible {
    padding-bottom: 80px;
}

#cookieConsentBanner .cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

#cookieConsentBanner .cookie-banner-text {
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
}

#cookieConsentBanner .cookie-banner-text strong {
    color: #111827;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

#cookieConsentBanner .cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

#cookieConsentBanner .cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
}

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

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

#cookieConsentBanner .cookie-btn-decline {
    background: #e5e7eb;
    color: #4b5563;
    border: 2px solid #d1d5db;
}

#cookieConsentBanner .cookie-btn-decline:hover {
    background: #d1d5db;
    color: #111827;
}

@media (max-width: 768px) {
    #cookieConsentBanner {
        padding: 10px 12px;
    }
    
    .cookie-banner-visible {
        padding-bottom: 100px;
    }
    
    #cookieConsentBanner .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    #cookieConsentBanner .cookie-banner-text {
        min-width: auto;
        font-size: 12px;
    }
    
    #cookieConsentBanner .cookie-banner-text strong {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    #cookieConsentBanner .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    #cookieConsentBanner .cookie-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
}
