#user-consent-popup { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: #f0f0f0; } .user-consent-popup-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(3px); } .user-consent-popup-content { position: relative; background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2); padding: 20px; border-top-left-radius: 12px; border-top-right-radius: 12px; max-width: 90%; margin: 0 auto; transform: translateY(0); transition: transform 0.3s ease-out; border: 1px solid rgba(255, 255, 255, 0.1); } @media (min-width: 768px) { .user-consent-popup-content { max-width: 700px; margin-bottom: 20px; border-radius: 12px; } } #banner-view p { margin-bottom: 20px; font-size: 15px; } .user-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; } .user-consent-btn { padding: 12px 20px; border: none; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; flex-grow: 1; min-width: 150px; } .user-consent-btn:hover { transform: translateY(-2px); } .user-consent-btn.primary { background-color: #28a745; color: #fff; } .user-consent-btn.primary:hover { background-color: #218838; } .user-consent-btn.secondary { background-color: #007bff; color: #fff; } .user-consent-btn.secondary:hover { background-color: #0056b3; } .user-consent-btn.tertiary { background-color: #dc3545; color: #fff; } .user-consent-btn.tertiary:hover { background-color: #c82333; } .privacy-link { text-align: center; font-size: 13px; } .privacy-link a { color: #87CEEB; text-decoration: none; } .privacy-link a:hover { text-decoration: underline; } #settings-view { padding: 10px 0; } .settings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .settings-header h2 { margin: 0; font-size: 22px; color: #fff; } .close-btn { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 5px; line-height: 1; transition: color 0.3s ease; } .close-btn:hover { color: #dc3545; } .cookie-category { margin-bottom: 20px; padding: 15px; background: rgba(0, 0, 0, 0.2); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); } .category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .category-header h3 { margin: 0; font-size: 18px; color: #fff; } .cookie-category p { font-size: 14px; color: #ccc; } .toggle-switch { position: relative; display: inline-block; width: 48px; height: 28px; } .toggle-switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; } .slider:before { position: absolute; content: \"\"; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: 0.4s; } input:checked + .slider { background-color: #28a745; } input:focus + .slider { box-shadow: 0 0 1px #28a745; } input:checked + .slider:before { transform: translateX(20px); } .slider.round { border-radius: 28px; } .slider.round:before { border-radius: 50%; } input:disabled + .slider { background-color: #555; cursor: not-allowed; } input:disabled + .slider:before { background-color: #999; } .settings-footer { text-align: right; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .settings-footer .user-consent-btn { min-width: unset; flex-grow: unset; } @media (max-width: 480px) { .user-consent-popup-content { padding: 15px; border-radius: 0; } .user-consent-actions { flex-direction: column; } .user-consent-btn { width: 100%; min-width: unset; } .settings-header h2 { font-size: 20px; } .category-header h3 { font-size: 16px; } }