/* Global Sonner-style notifications */
:root{
  --sonner-bg:#fff;
  --sonner-text:#0f172a;
  --sonner-muted:#64748b;
  --sonner-border:#e5e7eb;
  --sonner-shadow:0 18px 45px rgba(15,23,42,.16),0 4px 12px rgba(15,23,42,.08);
}
.sonner-toaster{
  position:fixed;
  left:50%;
  right:auto;
  top:18px;
  z-index:2147483000;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:min(430px,calc(100vw - 32px));
  transform:translateX(-50%);
  pointer-events:none;
}
.sonner-toast{
  pointer-events:auto;
  display:flex;
  align-items:flex-start;
  gap:12px;
  width:100%;
  background:var(--sonner-bg);
  color:var(--sonner-text);
  border:1px solid var(--sonner-border);
  border-radius:14px;
  box-shadow:var(--sonner-shadow);
  padding:13px 14px;
  transform:translateY(-10px) scale(.98);
  opacity:0;
  transition:opacity .18s ease,transform .18s ease;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.sonner-toast.sonner-show{opacity:1;transform:translateY(0) scale(1)}
.sonner-toast.sonner-hide{opacity:0;transform:translateY(-8px) scale(.98)}
.sonner-icon{
  flex:0 0 22px;
  width:22px;
  height:22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  margin-top:1px;
}
.sonner-success .sonner-icon{background:#dcfce7;color:#16a34a}
.sonner-error .sonner-icon{background:#fee2e2;color:#dc2626}
.sonner-warning .sonner-icon{background:#fef3c7;color:#d97706}
.sonner-info .sonner-icon,.sonner-question .sonner-icon{background:#dbeafe;color:#2563eb}
.sonner-content{min-width:0;flex:1}
.sonner-title{font-size:14px;font-weight:800;line-height:1.25;margin:0;color:#111827;word-break:break-word}
.sonner-description{font-size:13px;line-height:1.35;color:var(--sonner-muted);margin-top:3px;word-break:break-word}
.sonner-close{
  border:0;
  background:transparent;
  color:#9ca3af;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  padding:0 1px;
  margin-left:4px;
}
.sonner-close:hover{color:#111827}
.sonner-actions{display:flex;gap:8px;justify-content:flex-end;margin-top:12px;flex-wrap:wrap}
.sonner-btn{
  border:1px solid #d1d5db;
  background:#fff;
  color:#374151;
  border-radius:9px;
  font-size:12px;
  font-weight:800;
  padding:7px 11px;
  cursor:pointer;
}
.sonner-btn:hover{background:#f9fafb}
.sonner-btn-primary{border-color:#111827;background:#111827;color:#fff}
.sonner-btn-primary:hover{background:#1f2937}

.sonner-input-wrap{margin-top:10px}
.sonner-input-label{font-size:12px;font-weight:800;color:#374151;margin-bottom:5px}
.sonner-input{
  width:100%;
  min-height:82px;
  border:1px solid #d1d5db;
  border-radius:10px;
  padding:8px 10px;
  color:#111827;
  background:#fff;
  outline:none;
  resize:vertical;
  font-size:13px;
  line-height:1.35;
}
.sonner-input:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.12)}
.sonner-input-error{font-size:12px;color:#dc2626;margin-top:5px;font-weight:700;display:none}
@media (max-width:575.98px){.sonner-toaster{right:12px;left:12px;top:12px;width:auto;transform:none}}
