.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-inner {
  min-width: 280px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-inner.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast--success {
  background-color: #25D366;
}

.toast--error {
  background-color: #dc3545;
}

.toast--warning {
  background-color: #F07810;
}

.toast--info {
  background-color: #222224;
}

@media (max-width: 576px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .toast-inner {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
