#cookie-consent-box { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background-color: #f9f9f9; color: #333; padding: 15px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: none; z-index: 1000; } #cookie-consent-box p { margin: 0 0 10px 0; line-height: 1.5; } #cookie-consent-box a { color: #0066cc; text-decoration: none; } #cookie-consent-box .cookie-buttons { display: flex; gap: 10px; } #cookie-consent-box button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; } #cookie-consent-box .accept-btn { background-color: #4CAF50; color: white; } #cookie-consent-box .close-btn { background-color: #f44336; color: white; } @media (max-width: 768px) { #cookie-consent-box { width: 95%; bottom: 10px; } }