#cookie-consent-banner { position: fixed; bottom: 0; left: 10%; width: 80%; background-color: #222; color: #eee; padding: 15px 20px; box-sizing: border-box; border-radius: 8px 8px 0 0; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; z-index: 10000; } #cookie-consent-banner p { margin: 0; flex: 1 1 60%; color: #eee; } #cookie-consent-banner a { color: #4ea1ff; text-decoration: underline; } #cookie-consent-banner button { background-color: #4ea1ff; border: none; color: #fff; padding: 10px 25px; border-radius: 5px; cursor: pointer; flex: 0 0 auto; font-weight: 600; transition: background-color 0.3s ease; } #cookie-consent-banner button:hover { background-color: #3a81e8; } @media (max-width: 768px) { #cookie-consent-banner { left: 5%; width: 90%; flex-direction: column; align-items: flex-start; } #cookie-consent-banner p { flex: none; margin-bottom: 12px; font-size: 13px; } #cookie-consent-banner button { width: 100%; } }