#toast-container {
  pointer-events: none;
}

#toast-container.toast-top-left {
  top: 1rem;
  left: 1rem;
}

#toast-container.toast-top-right {
  top: 1rem;
  right: 1rem;
}

#toast-container > .toast {
  pointer-events: auto;
  width: min(360px, calc(100vw - 2rem));
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  background-image: none !important;
  opacity: 1;
  padding: 0.85rem 2.25rem 0.85rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

#toast-container > .toast .toast-title,
#toast-container > .toast .lm-toast-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

#toast-container > .toast .toast-message {
  font-weight: 500;
}

#toast-container > .toast .toast-close-button {
  right: 0.5rem;
  top: 0.55rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.8;
  text-shadow: none;
}

#toast-container > .toast .toast-close-button:hover {
  opacity: 1;
}

#toast-container > .toast-success {
  background-color: #ecfdf3;
  border-color: #86efac;
  color: #14532d;
}

#toast-container > .toast-info {
  background-color: #eff6ff;
  border-color: #93c5fd;
  color: #1e3a8a;
}

#toast-container > .toast-warning {
  background-color: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

#toast-container > .toast-error {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

#toast-container > .toast .toast-progress {
  height: 3px;
  opacity: 0.85;
}

#toast-container > .toast-success .toast-progress {
  background: #16a34a;
}

#toast-container > .toast-info .toast-progress {
  background: #2563eb;
}

#toast-container > .toast-warning .toast-progress {
  background: #f97316;
}

#toast-container > .toast-error .toast-progress {
  background: #dc2626;
}
