.cookie-consent-bar { position: fixed; bottom: 20px; right: 20px; max-width: 350px; background-color: #2c2c2c; color: #ffffff; padding: 16px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 10000; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; display: none; } .cookie-consent-bar p { margin: 0 0 12px 0; padding: 0; } .cookie-consent-bar a { color: #4a9eff; text-decoration: underline; } .cookie-consent-bar a:hover { color: #6bb3ff; } .cookie-consent-bar .cookie-buttons { display: flex; gap: 8px; justify-content: flex-end; } .cookie-consent-bar button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 500; transition: background-color 0.2s; } .cookie-consent-bar .accept-btn { background-color: #4a9eff; color: #ffffff; } .cookie-consent-bar .accept-btn:hover { background-color: #3a8eef; } .cookie-consent-bar .decline-btn { background-color: #666666; color: #ffffff; } .cookie-consent-bar .decline-btn:hover { background-color: #777777; } @media (max-width: 768px) { .cookie-consent-bar { bottom: 10px; right: 10px; left: 10px; max-width: none; } .cookie-consent-bar .cookie-buttons { flex-direction: column; } }