.privacy-consent-popup { display: none; position: fixed; bottom: 20px; right: 20px; left: 20px; max-width: 450px; background: linear-gradient(135deg, #f0f2f5 0%, #e0e5ec 100%); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); padding: 25px; z-index: 1000; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; animation: fadeIn 0.5s ease-out forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .privacy-consent-popup h2 { font-size: 1.5em; margin-top: 0; margin-bottom: 15px; color: #2c3e50; } .privacy-consent-popup p { font-size: 0.95em; line-height: 1.5; margin-bottom: 20px; color: #555; } .privacy-consent-popup a { color: #007bff; text-decoration: none; font-weight: 600; } .privacy-consent-popup a:hover { text-decoration: underline; } .privacy-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; } .privacy-consent-actions button { flex: 1; padding: 12px 18px; border: none; border-radius: 8px; cursor: pointer; font-size: 0.9em; font-weight: 600; transition: all 0.3s ease; min-width: 120px; } .privacy-consent-actions .accept-all-btn { background-color: #28a745; color: white; } .privacy-consent-actions .accept-all-btn:hover { background-color: #218838; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3); } .privacy-consent-actions .reject-all-btn { background-color: #dc3545; color: white; } .privacy-consent-actions .reject-all-btn:hover { background-color: #c82333; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3); } .privacy-consent-actions .manage-btn { background-color: #007bff; color: white; } .privacy-consent-actions .manage-btn:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); } .privacy-consent-settings { margin-top: 25px; padding-top: 20px; border-top: 1px solid #d0d5db; display: none; } .privacy-consent-settings h3 { font-size: 1.2em; margin-bottom: 15px; color: #2c3e50; } .privacy-consent-option { margin-bottom: 15px; background-color: #ffffff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); } .privacy-consent-option label { display: flex; align-items: center; font-weight: 600; color: #333; cursor: pointer; margin-bottom: 8px; } .privacy-consent-option input[type="checkbox"] { margin-right: 10px; transform: scale(1.2); accent-color: #007bff; } .privacy-consent-option p { font-size: 0.85em; color: #666; margin-top: 0; margin-left: 30px; } .privacy-consent-option input[type="checkbox"]:disabled + span { color: #999; cursor: not-allowed; } .privacy-consent-option input[type="checkbox"]:disabled { accent-color: #ccc; } .privacy-consent-settings .save-preferences-btn { width: 100%; background-color: #007bff; color: white; padding: 12px 18px; border: none; border-radius: 8px; cursor: pointer; font-size: 1em; font-weight: 600; transition: background-color 0.3s ease; margin-top: 15px; } .privacy-consent-settings .save-preferences-btn:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); } @media (min-width: 768px) { .privacy-consent-popup { right: 30px; left: auto; max-width: 500px; } } @media (min-width: 1024px) { .privacy-consent-popup { right: 40px; max-width: 550px; } }