.ui-toast-container,
#ui-toast-container {
  position: fixed;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3000;
}

.ui-toast {
  max-width: 420px;
  border-radius: 10px;
  padding: 10px 12px;
  color: white;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  font-size: 0.95rem;
  line-height: 1.25;
  background: #0f766e;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ui-toast-text {
  flex: 1;
}

.ui-toast-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.ui-toast.ui-toast-warn {
  background: #b45309;
}

.ui-toast.ui-toast-err {
  background: #dc2626;
}
