#privacy-consent { position: fixed; bottom: 0; left: 16px; right: 16px; width: calc(100% - 32px); max-width: 90%; background-color: #2c2c2c; color: #ffffff; padding: 16px; border-radius: 8px 8px 0 0; box-shadow: 0 -4px 12px rgba(0,0,0,0.3); z-index: 99999; display: none; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; } #privacy-consent p { margin: 0 0 12px 0; padding: 0; } #privacy-consent a { color: #4CAF50; text-decoration: underline; } #privacy-consent a:hover { color: #66BB6A; } .consent-buttons { display: flex; gap: 8px; justify-content: flex-end; } .consent-buttons button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 500; transition: background-color 0.2s; } #accept-cookies { background-color: #4CAF50; color: white; } #accept-cookies:hover { background-color: #45a049; } #decline-cookies { background-color: #757575; color: white; } #decline-cookies:hover { background-color: #616161; } @media (max-width: 480px) { #privacy-consent { left: 8px; right: 8px; width: calc(100% - 16px); font-size: 13px; } .consent-buttons { flex-direction: column; } .consent-buttons button { width: 100%; padding: 10px; } }