#cookie-consent-bar { position: fixed; bottom: 0; width: 79%; background-color: #333; color: #fff; padding: 10px; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); display: flex; justify-content: space-between; align-items: center; z-index: 1000; } #cookie-consent-bar .buttons { display: flex; gap: 10px; } #cookie-consent-bar button { background-color: #555; color: #fff; border: none; padding: 8px 16px; cursor: pointer; border-radius: 5px; } #cookie-consent-bar button:hover { background-color: #444; } @media (max-width: 768px) { #cookie-consent-bar { flex-direction: column; align-items: stretch; } #cookie-consent-bar .buttons { justify-content: space-around; margin-top: 10px; } }