weav-toast-container {
  z-index: var(--layer-top);
}
.toast-container {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
  padding: 1rem;
}

.toast-container.is-bottom-left {
  bottom: 0;
  left: 0;
}

.toast-container.is-bottom-right {
  bottom: 0;
  right: 0;
}

.toast-container.is-top-left {
  top: 0;
  left: 0;
}

.toast-container.is-top-right {
  top: 0;
  right: 0;
}

.toast-container.is-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.toast-container.is-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Enable pointer events for toast children */
.toast-container > * {
  pointer-events: auto;
}

/* Hide toast container when printing */
@media print {
  .toast-container {
    display: none !important;
  }
}

