#cookie-alert-box { position: fixed; bottom: 0; left: 0; width: 80%; max-width: 400px; background-color: #f9f9f9; color: #333; padding: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.1); box-sizing: border-box; display: flex; flex-direction: column; align-items: flex-start; z-index: 9999; } #cookie-alert-box .buttons { display: flex; gap: 10px; margin-top: 10px; } #cookie-alert-box button { background-color: #4CAF50; color: #fff; border: none; padding: 10px 15px; cursor: pointer; } #cookie-alert-box button:nth-child(2) { background-color: #f44336; } @media(min-width: 768px) { #cookie-alert-box { flex-direction: row; justify-content: space-between; align-items: center; } }