.privacy-popup { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 400px; background-color: #ffffff; color: #333333; padding: 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 99999; display: none; 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 .btn-container { display: flex; gap: 10px; justify-content: center; } .privacy-popup button { padding: 8px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: opacity 0.3s; } .privacy-popup .accept-btn { background-color: #0066cc; color: #ffffff; } .privacy-popup .decline-btn { background-color: #f0f0f0; color: #333333; } .privacy-popup button:hover { opacity: 0.8; } @media (max-width: 480px) { .privacy-popup { width: 95%; bottom: 10px; padding: 15px; } .privacy-popup .btn-container { flex-direction: column; } .privacy-popup button { width: 100%; } }