#cookie-consent-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; z-index: 9999; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); } .modal-content { background: linear-gradient(135deg, #ffffff, #f0f8ff); border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 30px; max-width: 500px; width: 90%; position: relative; z-index: 10000; text-align: center; color: #333; animation: fadeIn 0.3s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .modal-title { font-size: 1.8em; color: #1a2a6c; margin-bottom: 15px; } .modal-description { font-size: 0.95em; line-height: 1.6; margin-bottom: 25px; color: #555; } .privacy-link { color: #007bff; text-decoration: none; font-weight: 600; } .privacy-link:hover { text-decoration: underline; } .button-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; } .btn { padding: 12px 25px; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; transition: all 0.3s ease; font-weight: 600; } .btn-accept-all { background-color: #4CAF50; color: white; } .btn-accept-all:hover { background-color: #45a049; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .btn-customize, .btn-save-preferences { background-color: #007bff; color: white; } .btn-customize:hover, .btn-save-preferences:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .settings-view { text-align: left; } .settings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .settings-title { font-size: 1.5em; color: #1a2a6c; margin: 0; } .btn-close-settings { background: none; border: none; font-size: 2em; cursor: pointer; color: #aaa; line-height: 1; padding: 0; transition: color 0.2s ease; } .btn-close-settings:hover { color: #666; } .cookie-category { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #eee; } .cookie-category:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .category-header h4 { margin: 0; font-size: 1.1em; color: #333; } .category-description { font-size: 0.85em; color: #666; line-height: 1.5; } .switch { position: relative; display: inline-block; width: 45px; height: 25px; } .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: .4s; } .slider:before { position: absolute; content: ""; height: 17px; width: 17px; left: 4px; bottom: 4px; background-color: white; transition: .4s; } input:checked + .slider { background-color: #4CAF50; } input:focus + .slider { box-shadow: 0 0 1px #4CAF50; } input:checked + .slider:before { transform: translateX(20px); } .slider.round { border-radius: 25px; } .slider.round:before { border-radius: 50%; } input:disabled + .slider { background-color: #a0a0a0; cursor: not-allowed; } input:disabled + .slider:before { background-color: #e0e0e0; } @media (max-width: 768px) { .modal-content { padding: 20px; max-width: 95%; } .modal-title { font-size: 1.5em; } .modal-description { font-size: 0.9em; } .btn { padding: 10px 20px; font-size: 0.9em; flex-basis: 100%; } .button-group { flex-direction: column; } .settings-title { font-size: 1.3em; } .btn-close-settings { font-size: 1.8em; } .category-header h4 { font-size: 1em; } .category-description { font-size: 0.8em; } } @media (max-width: 480px) { .modal-content { padding: 15px; } .modal-title { font-size: 1.3em; } .modal-description { font-size: 0.85em; } .btn { padding: 8px 15px; font-size: 0.85em; } .settings-title { font-size: 1.2em; } .btn-close-settings { font-size: 1.6em; } }