/* ========================================== */
/* BANNER & MODAL CSS STYLES                  */
/* ========================================== */
  .cookie-consent-banner {
        position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
        width: 100%; max-width: 50%; background-color: #ffffff; color: #333333;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); border-radius: 8px; padding: 24px;
        /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;*/
        font-size: 14px; line-height: 1.5; z-index: 999999; box-sizing: border-box; display: none; 
    }
    .cookie-consent-text { margin-bottom: 20px; }
    .cookie-consent-text p { margin: 0 0 10px 0; }
    .cookie-consent-text a { color: #0066cc; text-decoration: underline; font-weight: 500; }
    .cookie-consent-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
    
    .cookie-btn { padding: 11px 22px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; font-size: 14px; flex: 1; min-width: 130px; text-align: center; }
    .cookie-btn-accept { background-color: #10b981; color: #ffffff; border: 1px solid #10b981; }
    .cookie-btn-accept:hover { background-color: #059669; }
    .cookie-btn-reject { background-color: #f3f4f6; color: #1f2937; border: 1px solid #d1d5db; }
    .cookie-btn-reject:hover { background-color: #e5e7eb; }
    .cookie-btn-preferences { background-color: transparent; color: #4b5563; border: 1px solid #cbd5e1; }
    .cookie-btn-preferences:hover { background-color: #f8fafc; }
    
    .cookie-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: none; justify-content: center; align-items: center; z-index: 1000000; }
    .cookie-modal { background: #ffffff; padding: 28px; border-radius: 8px; width: 100%; max-width: 50%; /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;*/ box-sizing: border-box; }
    .cookie-modal-wide { max-width: 50%px; }
    .cookie-modal h3 { margin-top: 0; font-size: 18px; color: #111; }
    
    .cookie-policy-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; margin-bottom: 15px; }
    .cookie-policy-date { font-size: 12px; color: #64748b; }
    .cookie-policy-scrollable-content { max-height: 380px; overflow-y: auto; padding-right: 10px; font-size: 13.5px; color: #334155; line-height: 1.6; text-align: left; }
    .cookie-policy-scrollable-content h4 { color: #0f172a; margin: 20px 0 10px 0; font-size: 15px; }
    
    .cookie-policy-table { width: 100%; border-collapse: collapse; margin: 10px 0 20px 0; font-size: 12px; }
    .cookie-policy-table th, .cookie-policy-table td { padding: 8px 10px; border: 1px solid #e2e8f0; text-align: left; }
    .cookie-policy-table th { background-color: #f8fafc; font-weight: 600; color: #1e293b; }
    
    .cookie-preference-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
    .cookie-preference-info { max-width: 75%; }
    .cookie-preference-title { font-weight: 600; display: block; color: #1e293b; margin-bottom: 2px;}
    .cookie-preference-desc { font-size: 12.5px; color: #64748b; line-height: 1.4; }
    
    .cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; min-width: 44px; }
    .cookie-switch input { opacity: 0; width: 0; height: 0; }
    .cookie-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e1; transition: .3s; border-radius: 24px; }
    .cookie-slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .3s; border-radius: 50%; }
    input:checked + .cookie-slider { background-color: #10b981; }
    input:checked + .cookie-slider:before { transform: translateX(20px); }
    input:disabled + .cookie-slider { background-color: #e2e8f0; cursor: not-allowed; }
    .cookie-modal-buttons { margin-top: 24px; display: flex; justify-content: flex-end; gap: 12px; }

    @media (max-width: 480px) {
        .cookie-consent-buttons { flex-direction: column; }
        .cookie-btn { width: 100%; flex: none; }
    }
