/* Sosyal kanıt toast — canlı “profilini inceliyor” */
.canli-toast{
  position:fixed;left:16px;bottom:18px;z-index:90;
  display:flex;align-items:center;gap:12px;
  max-width:min(360px,calc(100vw - 32px));
  padding:12px 14px;border-radius:14px;
  background:#fff;color:#1f2937;
  box-shadow:0 10px 30px rgba(15,23,42,.18),0 2px 8px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.06);
  transform:translateY(18px);opacity:0;pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
}
.canli-toast.on{opacity:1;transform:translateY(0);pointer-events:auto}
.canli-toast-av{
  flex:none;width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  font-weight:800;font-size:.82rem;letter-spacing:.02em;color:#1e3a5f;
  background:#c4b5fd;
}
.canli-toast-body{min-width:0;line-height:1.35}
.canli-toast-ust{font-size:.86rem;font-weight:600;color:#374151;margin:0}
.canli-toast-ust b{color:#111827;font-weight:800}
.canli-toast-ust a,.canli-toast-ust .ilan{
  color:#0f766e;font-weight:800;text-decoration:none;
}
.canli-toast-ust a:hover{text-decoration:underline}
.canli-toast-alt{
  display:flex;align-items:center;gap:7px;
  margin-top:4px;font-size:.72rem;font-weight:600;color:#9ca3af;
}
.canli-toast-alt .dot{
  width:7px;height:7px;border-radius:50%;background:#14b8a6;flex:none;
  box-shadow:0 0 0 0 rgba(20,184,166,.45);
  animation:canliToastNb 1.5s infinite;
}
@keyframes canliToastNb{
  0%{box-shadow:0 0 0 0 rgba(20,184,166,.45)}
  70%{box-shadow:0 0 0 8px rgba(20,184,166,0)}
  100%{box-shadow:0 0 0 0 rgba(20,184,166,0)}
}
@media (max-width:480px){
  .canli-toast{left:10px;right:10px;bottom:12px;max-width:none}
}
