#privacy-consent-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 10000; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; } .popup-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); } .popup-content { background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 30px; max-width: 500px; width: 90%; position: relative; z-index: 10001; text-align: center; animation: fadeIn 0.3s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .popup-title { font-size: 1.8em; margin-bottom: 15px; color: #2c3e50; } .popup-description, .category-description { font-size: 0.95em; line-height: 1.6; margin-bottom: 20px; color: #555; } .privacy-link { font-size: 0.85em; margin-bottom: 20px; } .privacy-link a { color: #3498db; text-decoration: none; font-weight: bold; } .privacy-link a:hover { text-decoration: underline; } .button-group { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; } .btn { padding: 12px 25px; border: none; border-radius: 8px; cursor: pointer; font-size: 0.95em; font-weight: 600; transition: all 0.3s ease; flex-grow: 1; min-width: 150px; } .btn.accept-all { background: #28a745; color: #fff; } .btn.accept-all:hover { background: #218838; transform: translateY(-2px); } .btn.reject-all { background: #dc3545; color: #fff; } .btn.reject-all:hover { background: #c82333; transform: translateY(-2px); } .btn.manage-preferences, .btn.save-preferences, .btn.back-to-main { background: #007bff; color: #fff; } .btn.manage-preferences:hover, .btn.save-preferences:hover, .btn.back-to-main:hover { background: #0056b3; transform: translateY(-2px); } .cookie-category { background: #f9f9f9; border: 1px solid #eee; border-radius: 8px; padding: 15px; margin-bottom: 15px; text-align: left; } .category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .category-header h3 { font-size: 1.1em; color: #34495e; margin: 0; } .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; border-radius: 25px; } .slider:before { position: absolute; content: ""; height: 17px; width: 17px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; } input:checked + .slider { background-color: #28a745; } input:focus + .slider { box-shadow: 0 0 1px #28a745; } input:checked + .slider:before { transform: translateX(20px); } input:disabled + .slider { opacity: 0.6; cursor: not-allowed; } @media (max-width: 768px) { .popup-content { padding: 20px; max-width: 95%; } .popup-title { font-size: 1.5em; } .popup-description, .category-description { font-size: 0.9em; } .btn { padding: 10px 20px; font-size: 0.9em; min-width: unset; } .button-group { flex-direction: column; } .category-header h3 { font-size: 1em; } } @media (max-width: 480px) { .popup-content { border-radius: 8px; } .popup-title { font-size: 1.3em; } .btn { width: 100%; } }