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