.privacy-popup { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background-color: #ffffff; color: #333333; padding: 20px 25px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); z-index: 10000; display: none; max-width: 90%; width: 400px; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.5; } .privacy-popup p { margin: 0 0 15px 0; } .privacy-popup a { color: #0066cc; text-decoration: underline; } .privacy-popup a:hover { color: #0052a3; } .privacy-popup .btn-container { display: flex; gap: 10px; justify-content: center; } .privacy-popup button { padding: 8px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 14px; transition: background-color 0.3s; } .privacy-popup .accept-btn { background-color: #0066cc; color: white; } .privacy-popup .accept-btn:hover { background-color: #0052a3; } .privacy-popup .decline-btn { background-color: #e0e0e0; color: #333; } .privacy-popup .decline-btn:hover { background-color: #d0d0d0; } @media (max-width: 480px) { .privacy-popup { bottom: 10px; padding: 15px; width: calc(100% - 20px); } .privacy-popup .btn-container { flex-direction: column; } .privacy-popup button { width: 100%; } }