#cookie-consent-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #f8f9fa; padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; text-align: center; } #cookie-consent-bar p { margin: 0 10px 10px 0; color: #333; font-size: 14px; } #cookie-consent-bar a { color: #0066cc; text-decoration: underline; } #cookie-consent-bar .buttons { display: flex; gap: 10px; } #cookie-consent-bar button { padding: 8px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; } #cookie-consent-bar .accept { background: #28a745; color: white; } #cookie-consent-bar .close { background: #6c757d; color: white; } @media (max-width: 768px) { #cookie-consent-bar { flex-direction: column; } #cookie-consent-bar p { margin-bottom: 10px; } }