/* Popup styles */
#uapp-root, #uapp-root-manual { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 999999; }
#uapp-root.uapp-visible, #uapp-root-manual.uapp-visible { display: flex; }
.uapp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.uapp-modal { position: relative; max-width: 560px; width: 92%; background: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); padding: 20px; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; animation: uapp-pop 160ms ease-out; }
@keyframes uapp-pop { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.uapp-title { font-size: 20px; font-weight: 600; margin: 0 0 8px; }
.uapp-message { font-size: 14px; margin: 0 0 14px; }
.uapp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.uapp-btn { border: 0; cursor: pointer; border-radius: 10px; padding: 10px 14px; font-size: 14px; text-align: center; text-decoration: none; }
.uapp-primary { background: #16a34a; color: #fff; }
.uapp-secondary { background: #efefef; color: #111; }
.uapp-consent { font-size: 11px; color: #6b7280; margin-top: 8px; }
.uapp-footer { margin-top: 12px; display: flex; gap: 8px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }
.uapp-pos-bottom-right .uapp-modal, .uapp-pos-bottom-left .uapp-modal { position: fixed; bottom: 20px; }
.uapp-pos-bottom-right .uapp-modal { right: 20px; } .uapp-pos-bottom-left .uapp-modal { left: 20px; }
.uapp-hidden { display: none; }
