/* ============================================================
   TOAST.CSS — Notifikasi Toast
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  max-height: 40vh;
  overflow: hidden;
  pointer-events: none;
  align-items: flex-end;
}
.toast {
  background: rgba(7, 12, 25, 0.9);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 30px;
  border-left: 3px solid var(--primary);
  color: var(--text-light);
  font-size: 12px;
  animation: slideIn 0.3s ease;
  pointer-events: auto;
  max-width: 90%;
}