/* assets/css/popup.css - LocalToOnline popup styles */
#ltol-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.45);
  display: none;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 18px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
#ltol-popup-overlay.open { display: flex; }
#ltol-popup-overlay {
  z-index: 10000;
}
#ltol-popup {
  width: 420px;
  max-width: calc(100% - 36px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(8,40,34,0.18);
  overflow: hidden;
  font-family: Inter, system-ui, Arial, sans-serif;
}

#ltol-popup .head {
  background: linear-gradient(90deg,#0a7a5a,#146c54);
  color: #fff;
  padding: 14px 16px;
  display:flex;
  gap:8px;
  align-items:center;
}
#ltol-popup .head h4 { margin:0; font-size:16px; font-weight:800; }
#ltol-popup .body { padding: 16px; }
#ltol-popup .body p { color:#556865; margin-bottom:12px; font-size:14px; }
#ltol-popup .form-group { margin-bottom:10px; }
#ltol-popup .form-group input { width:100%; padding:10px 12px; border-radius:8px; border:1px solid #e6e6e6; box-sizing:border-box; font-size:14px; }
#ltol-popup .actions { display:flex; gap:8px; margin-top:10px; }
#ltol-popup .btn { padding:10px 12px; border-radius:8px; border:none; cursor:pointer; font-weight:700; font-size:14px; }
#ltol-popup .btn.primary { background: #0a7a5a; color:#fff; }
#ltol-popup .btn.ghost { background:transparent; border:1px solid #e6e6e6; color:#053b33; }

#ltol-popup .note { font-size:12px; color:#8a9a93; margin-top:10px; }
#ltol-popup .error { color:#b00020; font-size:13px; margin-top:8px; display:none; }
#ltol-popup .success { color: #106b3e; font-size:13px; margin-top:8px; display:none; }
#ltol-popup .close-x { margin-left:auto; cursor:pointer; opacity:.95; font-size:18px; }

@media (max-width: 480px) {
  #ltol-popup { width: 94%; }
  #ltol-popup .body p { font-size:13px; }
}
