#privacy-consent-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 10001; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .privacy-consent-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); } .privacy-consent-box { background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%); border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); max-width: 500px; width: 90%; padding: 30px; position: relative; z-index: 10002; color: #333; text-align: center; box-sizing: border-box; max-height: 90vh; overflow-y: auto; } .privacy-consent-title { font-size: 1.8em; margin-bottom: 15px; color: #222; font-weight: 700; } .privacy-consent-description { font-size: 1em; line-height: 1.6; margin-bottom: 25px; color: #555; } .privacy-consent-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; } .privacy-consent-button { padding: 12px 25px; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; transition: all 0.3s ease; font-weight: 600; white-space: nowrap; } .privacy-consent-button.accept-all { background-color: #4CAF50; color: white; } .privacy-consent-button.accept-all:hover { background-color: #45a049; transform: translateY(-2px); } .privacy-consent-button.reject-all { background-color: #f44336; color: white; } .privacy-consent-button.reject-all:hover { background-color: #da190b; transform: translateY(-2px); } .privacy-consent-button.customize-btn, .privacy-consent-button.save-preferences { background-color: #007bff; color: white; } .privacy-consent-button.customize-btn:hover, .privacy-consent-button.save-preferences:hover { background-color: #0056b3; transform: translateY(-2px); } .privacy-consent-settings-view .privacy-consent-title { font-size: 1.6em; } .privacy-consent-settings-view .privacy-consent-description { margin-bottom: 20px; } .privacy-consent-categories { text-align: left; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; } .privacy-consent-category { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; } .privacy-consent-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .privacy-consent-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .privacy-consent-category-header h3 { font-size: 1.1em; color: #333; margin: 0; } .privacy-consent-category p { font-size: 0.9em; color: #666; line-height: 1.5; } .privacy-consent-switch { position: relative; display: inline-block; width: 45px; height: 25px; } .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; } .privacy-consent-slider:before { position: absolute; content: ""; height: 19px; width: 19px; left: 3px; bottom: 3px; background-color: white; transition: 0.4s; } input:checked + .privacy-consent-slider { background-color: #007bff; } input:focus + .privacy-consent-slider { box-shadow: 0 0 1px #007bff; } input:checked + .privacy-consent-slider:before { transform: translateX(20px); } .privacy-consent-slider.round { border-radius: 25px; } .privacy-consent-slider.round:before { border-radius: 50%; } input:disabled + .privacy-consent-slider { background-color: #a0a0a0; cursor: not-allowed; } input:disabled + .privacy-consent-slider:before { background-color: #e0e0e0; } @media (max-width: 768px) { .privacy-consent-box { max-width: 95%; padding: 20px; } .privacy-consent-title { font-size: 1.5em; } .privacy-consent-description { font-size: 0.95em; } .privacy-consent-button { width: 100%; padding: 10px 15px; } .privacy-consent-actions { flex-direction: column; gap: 10px; } .privacy-consent-category-header h3 { font-size: 1em; } .privacy-consent-category p { font-size: 0.85em; } } @media (max-width: 480px) { .privacy-consent-box { padding: 15px; } .privacy-consent-title { font-size: 1.3em; } .privacy-consent-description { font-size: 0.9em; } .privacy-consent-category-header h3 { font-size: 0.95em; } }