
.tstv2-container {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  padding: 4px;
  font-size: 0.66rem;
}

.tstv2-toast {
  position: relative;
  max-width: 80vw;
  background: var(--fw-white-000);
  color: var(--fw-black-200);
  border: 1px solid var(--fw-white-200);
  padding: 5px 8px;
  border-radius: 4px;
  margin: 5px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
}

.tstv2-toast.show {
  opacity: 1;
  transform: translateX(0) !important;
}

.tstv2-toast.clickable {
  cursor: pointer;
}

.tstv2-toast h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.tstv2-toast p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* Position-specific styles */
.tstv2-container[data-toast-position="top-left"] {
  top: 0;
  left: 0;
}

.tstv2-container[data-toast-position="top-right"] {
  top: 0;
  right: 0;
}

.tstv2-container[data-toast-position="bottom-left"] {
  bottom: 0;
  left: 0;
}

.tstv2-container[data-toast-position="bottom-right"] {
  bottom: 0;
  right: 0;
}

/* Animation states */
.tstv2-container[data-toast-position^="top-right"] .tstv2-toast,
.tstv2-container[data-toast-position^="bottom-right"] .tstv2-toast {
  transform: translateX(100%);
}

.tstv2-container[data-toast-position^="top-left"] .tstv2-toast,
.tstv2-container[data-toast-position^="bottom-left"] .tstv2-toast {
  transform: translateX(-100%);
}

/* Custom content styling */
.tstv2-toast strong {
  font-weight: 600;
}

.tstv2-toast em {
  font-style: italic;
}
