.evs-toast-container {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.evs-toast {
  min-width: 220px;
  max-width: 360px;
  background: #1f2937;
  color: #f9fafb;
  padding: 12px 14px 12px 14px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #3b82f6;
  font-size: 13px;
  line-height: 1.35;
  white-space: pre-line;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
  position: relative;
}

.evs-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.evs-toast.is-hiding {
  opacity: 0;
  transform: translateY(-6px);
}

.evs-toast-success {
  border-left-color: #22c55e;
}

.evs-toast-error {
  border-left-color: #ef4444;
}

.evs-toast-warning {
  border-left-color: #f59e0b;
}

.evs-toast-info {
  border-left-color: #3b82f6;
}

.evs-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.evs-toast-close:focus {
  outline: none;
}
