.privacy-popup { position: fixed; bottom: 0; left: 0; right: 0; width: 100%; background-color: #2c2c2c; color: #ffffff; padding: 12px 15px; box-sizing: border-box; display: none; z-index: 99999; font-family: Arial, sans-serif; font-size: 14px; } .privacy-popup-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; } .privacy-popup p { margin: 0; flex: 1 1 auto; padding-right: 10px; } .privacy-popup a { color: #4a9eff; text-decoration: underline; } .privacy-popup a:hover { color: #6bb3ff; } .privacy-popup-buttons { display: flex; gap: 8px; flex-shrink: 0; } .privacy-popup button { background-color: #4a9eff; color: #ffffff; border: none; padding: 8px 16px; cursor: pointer; border-radius: 4px; font-size: 14px; transition: background-color 0.2s; } .privacy-popup button:hover { background-color: #3a8eef; } .privacy-popup button.decline { background-color: #555555; } .privacy-popup button.decline:hover { background-color: #666666; } @media (max-width: 768px) { .privacy-popup-content { flex-direction: column; text-align: center; } .privacy-popup p { padding-right: 0; margin-bottom: 10px; } .privacy-popup-buttons { width: 100%; justify-content: center; } }