/* Inter_Admin 3.5 - Toasts */
.ia-toast-region {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.ia-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid #e2e8f0;
}

.ia-toast-success {
  border-left: 4px solid #22c55e;
}

.ia-toast-danger {
  border-left: 4px solid #ef4444;
}

.ia-toast-icon {
  font-size: 18px;
  color: #0f172a;
  margin-top: 2px;
}

.ia-toast-title {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.ia-toast-text {
  font-size: 13px;
  color: #475569;
}

.ia-toast-close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
}

.ia-toast-hide {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
