.privacy-consent-popup { position: fixed; bottom: 0; left: 18px; right: 18px; width: calc(100% - 36px); max-width: 90%; background-color: #2c2c2c; color: #ffffff; padding: 16px; border-radius: 8px 8px 0 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); z-index: 10001; display: none; box-sizing: border-box; } .privacy-consent-popup p { margin: 0 0 12px 0; font-size: 14px; line-height: 1.4; } .privacy-consent-popup a { color: #4a9eff; text-decoration: underline; } .privacy-consent-popup a:hover { color: #66b3ff; } .privacy-consent-popup .cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; } .privacy-consent-popup button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: background-color 0.2s; } .privacy-consent-popup .accept-btn { background-color: #28a745; color: white; } .privacy-consent-popup .accept-btn:hover { background-color: #218838; } .privacy-consent-popup .decline-btn { background-color: #6c757d; color: white; } .privacy-consent-popup .decline-btn:hover { background-color: #545b62; } @media (max-width: 480px) { .privacy-consent-popup { left: 10px; right: 10px; width: calc(100% - 20px); padding: 12px; } .privacy-consent-popup .cookie-buttons { flex-direction: column; } .privacy-consent-popup button { width: 100%; } }