.privacy-consent-popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 9999; justify-content: center; align-items: center; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .privacy-consent-content { background-color: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); max-width: 500px; width: 90%; margin: 20px; overflow: hidden; position: relative; color: #333; } .privacy-consent-header { background-color: #f0f4f8; padding: 20px 25px; border-bottom: 1px solid #e0e6ed; display: flex; justify-content: space-between; align-items: center; } .privacy-consent-header h2 { margin: 0; font-size: 1.5em; color: #2c3e50; } .privacy-consent-close-btn { background: none; border: none; font-size: 1.8em; color: #888; cursor: pointer; transition: color 0.2s ease; } .privacy-consent-close-btn:hover { color: #555; } .privacy-consent-body { padding: 25px; line-height: 1.6; font-size: 0.95em; } .privacy-consent-body p { margin-bottom: 15px; } .privacy-consent-buttons { display: flex; gap: 10px; padding: 20px 25px; border-top: 1px solid #e0e6ed; justify-content: flex-end; } .privacy-consent-buttons button { padding: 12px 20px; border-radius: 8px; font-size: 1em; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease; } .privacy-consent-accept-all { background-color: #4CAF50; color: #fff; border: 1px solid #4CAF50; } .privacy-consent-accept-all:hover { background-color: #45a049; border-color: #45a049; } .privacy-consent-manage-settings, .privacy-consent-save-preferences { background-color: #007bff; color: #fff; border: 1px solid #007bff; } .privacy-consent-manage-settings:hover, .privacy-consent-save-preferences:hover { background-color: #0056b3; border-color: #0056b3; } .privacy-consent-settings { display: none; } .privacy-consent-settings-section { margin-bottom: 20px; border: 1px solid #e0e6ed; border-radius: 8px; padding: 15px; } .privacy-consent-settings-section h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.2em; display: flex; justify-content: space-between; align-items: center; color: #2c3e50; } .privacy-consent-settings-section p { font-size: 0.85em; color: #666; margin-bottom: 15px; } .privacy-consent-toggle-switch { position: relative; display: inline-block; width: 45px; height: 25px; } .privacy-consent-toggle-switch input { opacity: 0; width: 0; height: 0; } .privacy-consent-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; border-radius: 25px; } .privacy-consent-slider:before { position: absolute; content: ""; height: 19px; width: 19px; left: 3px; bottom: 3px; background-color: white; transition: 0.4s; border-radius: 50%; } input:checked + .privacy-consent-slider { background-color: #4CAF50; } input:focus + .privacy-consent-slider { box-shadow: 0 0 1px #4CAF50; } input:checked + .privacy-consent-slider:before { transform: translateX(20px); } .privacy-consent-toggle-disabled .privacy-consent-slider { background-color: #e0e0e0; cursor: not-allowed; } .privacy-consent-toggle-disabled .privacy-consent-slider:before { background-color: #f0f0f0; } /* Responsive adjustments */ @media (max-width: 768px) { .privacy-consent-content { max-width: 95%; margin: 10px; } .privacy-consent-header h2 { font-size: 1.3em; } .privacy-consent-body, .privacy-consent-settings-section p { font-size: 0.9em; } .privacy-consent-buttons { flex-direction: column; align-items: stretch; } .privacy-consent-buttons button { width: 100%; } } @media (max-width: 480px) { .privacy-consent-header { padding: 15px 20px; } .privacy-consent-body { padding: 20px; } .privacy-consent-buttons { padding: 15px 20px; } }