.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }

.toast-item {
  background: var(--admin);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  animation: slideT .3s ease;
  min-width: 260px;
  border-left: 4px solid var(--accent);
}
@keyframes slideT {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.toast-item i { color: var(--accent); font-size: 1.1rem; }
.toast-text { flex: 1; font-size: .86rem; }
.toast-name { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
