#consent-modal { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 75%; background: linear-gradient(45deg, #f06, #f90); color: #fff; padding: 15px; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; z-index: 9999; } #consent-modal .buttons { display: flex; gap: 10px; margin-top: 10px; } #consent-modal button { background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; } @media(min-width: 768px) { #consent-modal { flex-direction: row; justify-content: space-between; max-width: 600px; } }