#cookie-consent-box { position: fixed; bottom: 0; left: 0; right: 0; background-color: #f8f9fa; padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; display: none; } #cookie-consent-box p { margin: 0; color: #333; font-size: 14px; } #cookie-consent-box a { color: #007bff; text-decoration: none; } #cookie-consent-box .buttons { display: flex; gap: 10px; margin-top: 10px; } #cookie-consent-box button { padding: 8px 15px; border: none; border-radius: 4px; cursor: pointer; } #cookie-consent-box button:first-child { background-color: #28a745; color: white; } #cookie-consent-box button:last-child { background-color: #6c757d; color: white; } @media (min-width: 768px) { #cookie-consent-box { left: 50%; transform: translateX(-50%); max-width: 600px; border-radius: 4px; bottom: 20px; } }