.privacy-consent-popup { position: fixed; bottom: 19px; left: 19px; right: 19px; width: calc(100% - 38px); max-width: 90%; background-color: #2c2c2c; color: #ffffff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 10001; display: none; padding: 16px; 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: #4CAF50; 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; transition: background-color 0.2s; } .privacy-consent-popup .accept-btn { background-color: #4CAF50; color: white; } .privacy-consent-popup .decline-btn { background-color: #666; color: white; } .privacy-consent-popup .accept-btn:hover { background-color: #45a049; } .privacy-consent-popup .decline-btn:hover { background-color: #555; } @media (max-width: 480px) { .privacy-consent-popup { bottom: 10px; left: 10px; right: 10px; width: calc(100% - 20px); } .privacy-consent-popup .cookie-buttons { flex-direction: column; } .privacy-consent-popup button { width: 100%; } }