#cookie-notification-bar { position: fixed; bottom: 0; right: 0; width: 100%; max-width: 400px; background-color: #f0f0f0; color: #333; padding: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.1); box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; z-index: 9999; } #cookie-notification-bar .text { flex: 1; } #cookie-notification-bar .buttons { display: flex; gap: 10px; } #cookie-notification-bar button { background-color: #007bff; color: #fff; border: none; padding: 10px 15px; cursor: pointer; border-radius: 3px; } @media(max-width: 768px) { #cookie-notification-bar { flex-direction: column; align-items: stretch; } #cookie-notification-bar .buttons { justify-content: flex-end; margin-top: 10px; } }