#privacy-consent { position: fixed; bottom: 20px; right: 20px; width: 320px; max-width: calc(100vw - 40px); background-color: #2c2c2c; color: #ffffff; padding: 16px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 10001; display: none; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; } #privacy-consent p { margin: 0 0 12px 0; } #privacy-consent a { color: #4a9eff; text-decoration: underline; } #privacy-consent a:hover { color: #66b3ff; } .consent-buttons { display: flex; gap: 8px; justify-content: flex-end; } .consent-buttons button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 500; transition: background-color 0.2s; } .btn-accept { background-color: #4a9eff; color: #ffffff; } .btn-accept:hover { background-color: #3d8ae6; } .btn-decline { background-color: #666666; color: #ffffff; } .btn-decline:hover { background-color: #555555; } @media (max-width: 480px) { #privacy-consent { bottom: 0; right: 0; left: 0; width: auto; max-width: none; border-radius: 0; padding: 16px 20px; } .consent-buttons { justify-content: center; } .consent-buttons button { flex: 1; max-width: 120px; } }