/* Container spacing (top-right stack like Sonner) */
.toastify {
  padding: 0;
  background: none;
  box-shadow: none;
}

/* Actual toast */
.toastify-custom {
  background: #fff !important;
  color: #333;
  border-radius: 10px;
  padding: 14px 16px;
  min-width: 250px;
  font-size: 14px;
  border-left: 4px solid var(--color-orange);

  /* Sonner-style shadow */
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);

  /* Smooth animation feel */
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  animation: toast-in 0.25s ease forwards;
}

/* Animation */
@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-icon {
  font-size: 18px;
  display: flex;
  color: var(--color-orange);
}

/* Success / error variants */
.toast-success{
  border-left: 4px solid #22c55e;
}
.toast-info{
  border-left: 4px solid #3b82f6;
}
.toast-error{
  border-left: 4px solid #ef4444;
}
.toast-warning{
  border-left: 4px solid #f59e0b;
}

/* Optional color accents */
.toast-success .toast-icon { color: #22c55e; }
.toast-error .toast-icon { color: #ef4444; }
.toast-info .toast-icon { color: #3b82f6; }
.toast-warning .toast-icon { color: #f59e0b; }
