 #privacy-consent-modal { display: none; /* Hidden by default */ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 1000; justify-content: center; align-items: center; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .privacy-consent-content { background-color: #ffffff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); max-width: 500px; width: 90%; padding: 30px; box-sizing: border-box; position: relative; overflow: hidden; transition: all 0.3s ease-in-out; } @media (min-width: 768px) { .privacy-consent-content { padding: 40px; } } .privacy-consent-content h2 { font-size: 1.8em; color: #333; margin-bottom: 15px; text-align: left; } .privacy-consent-content h3 { font-size: 1.2em; color: #555; margin-top: 20px; margin-bottom: 10px; } .privacy-consent-content p { font-size: 0.95em; line-height: 1.6; color: #666; margin-bottom: 20px; text-align: left; } .privacy-consent-actions, .privacy-consent-actions-settings { display: flex; flex-direction: column; gap: 12px; margin-top: 25px; } .privacy-consent-actions button, .privacy-consent-actions-settings button { padding: 14px 20px; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; transition: background-color 0.2s ease, transform 0.1s ease; font-weight: 600; text-align: center; } .privacy-consent-accept-all { background-color: #4CAF50; /* Green */ color: #fff; } .privacy-consent-accept-all:hover { background-color: #45a049; transform: translateY(-1px); } .privacy-consent-decline-all { background-color: #f44336; /* Red */ color: #fff; } .privacy-consent-decline-all:hover { background-color: #da190b; transform: translateY(-1px); } .privacy-consent-manage, .privacy-consent-save-preferences { background-color: #2196F3; /* Blue */ color: #fff; } .privacy-consent-manage:hover, .privacy-consent-save-preferences:hover { background-color: #0b7dda; transform: translateY(-1px); } .privacy-consent-back { background-color: #f0f0f0; color: #333; } .privacy-consent-back:hover { background-color: #e0e0e0; transform: translateY(-1px); } .privacy-consent-policy-link { display: block; text-align: center; margin-top: 20px; color: #2196F3; text-decoration: none; font-size: 0.9em; transition: color 0.2s ease; } .privacy-consent-policy-link:hover { color: #0b7dda; text-decoration: underline; } .privacy-consent-category { background-color: #f9f9f9; border-radius: 8px; padding: 15px; margin-bottom: 15px; border: 1px solid #eee; } .privacy-consent-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .privacy-consent-category-header h3 { margin: 0; font-size: 1.1em; color: #333; } .privacy-consent-category p { font-size: 0.85em; color: #777; text-align: left; margin-bottom: 0; } .privacy-consent-switch { position: relative; display: inline-block; width: 48px; height: 28px; } .privacy-consent-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: 28px; } .privacy-consent-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: 0.4s; border-radius: 50%; } .privacy-consent-switch input:checked + .privacy-consent-slider { background-color: #2196F3; } .privacy-consent-switch input:focus + .privacy-consent-slider { box-shadow: 0 0 1px #2196F3; } .privacy-consent-switch input:checked + .privacy-consent-slider:before { transform: translateX(20px); } .privacy-consent-switch input:disabled + .privacy-consent-slider { background-color: #a0a0a0; cursor: not-allowed; } .privacy-consent-switch input:disabled + .privacy-consent-slider:before { background-color: #f0f0f0; } @media (max-width: 480px) { .privacy-consent-content { padding: 20px; width: 95%; } .privacy-consent-content h2 { font-size: 1.5em; } .privacy-consent-content p { font-size: 0.9em; } .privacy-consent-actions button, .privacy-consent-actions-settings button { padding: 12px 15px; font-size: 0.95em; } .privacy-consent-category { padding: 10px; } .privacy-consent-category-header h3 { font-size: 1em; } .privacy-consent-category p { font-size: 0.8em; } } 