#data-notice-bar { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #f5f5f5; color: #333; padding: 15px; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; z-index: 9999; } #data-notice-bar .buttons { display: flex; gap: 10px; margin-top: 10px; } #data-notice-bar button { background-color: #008CBA; color: #fff; border: none; padding: 10px 15px; cursor: pointer; } @media(min-width: 768px) { #data-notice-bar { flex-direction: row; justify-content: space-between; max-width: 600px; } }