.privacy-consent-popup { position: fixed; bottom: 20px; right: 20px; max-width: 350px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 20px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 10000; display: none; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; } .privacy-consent-popup p { margin: 0 0 15px 0; } .privacy-consent-popup a { color: #ffd700; text-decoration: none; font-weight: bold; } .privacy-consent-popup a:hover { text-decoration: underline; } .privacy-consent-popup .cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; } .privacy-consent-popup button { padding: 8px 16px; border: none; border-radius: 6px; cursor: pointer; font-size: 12px; font-weight: bold; transition: all 0.3s ease; } .privacy-consent-popup .accept-btn { background: #28a745; color: white; } .privacy-consent-popup .accept-btn:hover { background: #218838; } .privacy-consent-popup .decline-btn { background: #dc3545; color: white; } .privacy-consent-popup .decline-btn:hover { background: #c82333; } @media (max-width: 768px) { .privacy-consent-popup { bottom: 10px; right: 10px; left: 10px; max-width: none; padding: 15px; } .privacy-consent-popup .cookie-buttons { flex-direction: column; } .privacy-consent-popup button { width: 100%; padding: 12px; } }