.varzeshi-action-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 2000;
  transform: translateX(-50%) translateY(12px);
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.varzeshi-action-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media only screen and (max-width: 575px) {
  .varzeshi-action-toast {
    bottom: 84px;
    max-width: calc(100% - 32px);
    white-space: normal;
    text-align: center;
  }
}
