/* JR Memory Create Toast */
#jr-memory-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  min-width: 260px;
  max-width: 340px;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  padding: 12px 14px;
  display: none;
}
#jr-memory-toast.show { display: block; animation: jr-mct-in .18s ease-out; }
@keyframes jr-mct-in { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: translateY(0) } }

#jr-memory-toast .jr-mct-head {
  display:flex; align-items:center; gap:8px; font-weight:700; margin-bottom: 6px;
}
#jr-memory-toast .jr-mct-head .jr-mct-icon { width: 18px; height: 18px; display:inline-block; }
#jr-memory-toast .jr-mct-body { font-size: 13px; line-height: 1.35; color:#e5e7eb; }
#jr-memory-toast .jr-mct-actions { margin-top: 8px; display:flex; gap:8px; align-items:center; justify-content:flex-end; }
#jr-memory-toast .jr-mct-close {
  background: transparent; border: 1px solid #334155; color: #cbd5e1;
  padding: 4px 8px; border-radius: 6px; cursor:pointer;
}
#jr-memory-toast .jr-mct-save {
  background: #22c55e; color:#0a351c; border:0; font-weight:700;
  padding: 5px 10px; border-radius: 6px; cursor: pointer;
}
#jr-memory-toast .jr-mct-save:hover { filter: brightness(0.95); }
