#cookie-consent-modal { 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-modal p { margin: 0 0 10px 0; line-height: 1.5; } #cookie-consent-modal a { color: #0066cc; text-decoration: underline; } #cookie-consent-buttons { display: flex; gap: 10px; } #cookie-consent-modal button { padding: 8px 15px; border: none; border-radius: 4px; cursor: pointer; } #cookie-consent-modal button:first-child { background-color: #0066cc; color: white; } #cookie-consent-modal button:last-child { background-color: #e0e0e0; color: #333; } @media (max-width: 480px) { #cookie-consent-modal { width: 95%; } #cookie-consent-buttons { flex-direction: column; } }