#cookie-box { position: fixed; bottom: 0; right: 0; background: linear-gradient(45deg, #6a11cb, #2575fc); padding: 15px; color: #fff; box-sizing: border-box; z-index: 9999; max-width: 90%; display: flex; flex-direction: column; } #cookie-box p { margin: 0; } #cookie-box a { color: #ffd700; text-decoration: underline; } #cookie-box .buttons { display: flex; gap: 10px; margin-top: 10px; } #cookie-box button { padding: 10px 15px; border: none; cursor: pointer; background-color: rgba(255,255,255,0.2); color: #fff; } @media(min-width: 768px) { #cookie-box { max-width: 400px; flex-direction: row; justify-content: space-between; align-items: center; } #cookie-box p { margin: 0; } #cookie-box .buttons { margin-top: 0; } }