.toast-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999999999;
  pointer-events: none;
  font-family: inherit;
}

.top-left {
  top: 20px;
  left: 20px;
  align-items: flex-start;
}
.top-right {
  top: 20px;
  right: 20px;
  align-items: flex-end;
}
.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.bottom-left {
  bottom: 20px;
  left: 20px;
  align-items: flex-start;
}
.bottom-right {
  bottom: 20px;
  right: 20px;
  align-items: flex-end;
}
.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.toast {
  position: relative;
  min-width: 300px;
  max-width: 350px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  animation: toastIn 250ms ease-out forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}

.toast:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.toast-success {
  background-color: hsl(143, 85%, 96%);
  border: 1px solid hsl(145, 92%, 87%);
  color: hsl(140, 100%, 27%);
}

.toast-error {
  background-color: hsl(359, 100%, 97%);
  border: 1px solid hsl(359, 100%, 94%);
  color: hsl(360, 100%, 45%);
}

.toast-info {
  background-color: hsl(208, 100%, 97%);
  border: 1px solid hsl(221, 91%, 93%);
  color: hsl(210, 92%, 45%);
}

.toast-warning {
  background-color: hsl(49, 100%, 97%);
  border: 1px solid hsl(49, 91%, 84%);
  color: hsl(31, 92%, 45%);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.92) translateY(40px);
  }
}

.toast-close-btn {
  position: absolute;
  top: -8px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  padding: 0;
  color: inherit;
  opacity: 1;
}
/* ------------------------------------------ */
.st-fw-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  overflow: hidden;
  border: none;
  padding: 0;
}

.st-fw-icon {
  width: 24px;
  height: 24px;
}

.st-fw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9998;
  display: none;
}

.st-fw-iframe-wrapper {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 458px;
  height: 80vh;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 9999;
  transform: scale(0.75) translateY(20px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}

.st-fw-iframe-wrapper.st-fw-visible {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.st-fw-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
