/* =====================================================
   DigiCRM Toast Notifications
===================================================== */

#toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.1rem;
  min-width: 260px;
  max-width: 360px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 12px;
  background: #fff;
  border-left: 4px solid transparent;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: all .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast i {
  font-size: 1.2rem;
}

.toast-success {
  border-color: #10b981;
  color: #065f46;
}
.toast-error {
  border-color: #ef4444;
  color: #7f1d1d;
}
.toast-warning {
  border-color: #f59e0b;
  color: #78350f;
}
.toast-info {
  border-color: #3b82f6;
  color: #1e3a8a;
}
