#consent-modal { position: fixed; bottom: 20px; right: 20px; left: 20px; background-color: #f9f9f9; color: #333; padding: 15px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 100; display: none; font-size: 14px; box-sizing: border-box; } #consent-modal p { margin: 0; line-height: 1.4; } #consent-modal a { color: #0066cc; text-decoration: underline; } #consent-modal .buttons { display: flex; justify-content: flex-end; gap: 10px; margin-top: 10px; } #consent-modal button { background-color: #0066cc; color: #fff; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; font-size: 14px; } #consent-modal #close-btn { background-color: #aaa; } @media(min-width: 600px) { #consent-modal {left: auto; right: 40px; bottom: 40px; max-width: 400px;} } @media(min-width: 1024px) { #consent-modal {right: 60px; bottom: 60px; max-width: 480px;} }