/* ─── Toast Notifications Container ─────────────────────────────── */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3000;
}

/* ─── Base Toast Style ─────────────────────────────────────────── */
.toast {
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  min-width: 200px;
  max-width: 300px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.4s forwards, fadeOut 0.4s forwards 2.6s;
}

/* ─── Toast Type Variants ─────────────────────────────────────── */
.toast.toast-success {
  background-color: #28a745; /* Green */
}

.toast.toast-error {
  background-color: #dc3545; /* Red */
}

.toast.toast-info {
  background-color: #007bff; /* Blue */
}

.toast.toast-default {
  background-color: rgba(0, 0, 0, 0.85); /* Default dark */
}

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
