#webToastContainer {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  width: auto;
}

#webToastContainer .web-toast-notify {
  pointer-events: auto;
}

.web-toast-notify {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 80px;
  padding: 18px 22px;
  background: white !important;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translate3d(110%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s;
  overflow: hidden;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-width: 340px;
  max-width: 100%;
  width: fit-content;
}

.web-toast-notify-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.web-toast-notify-exit {
  opacity: 0;
  transform: translate3d(110%, 0, 0);
}

.web-toast-notify-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: -2px;
}

.web-toast-notify-body {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

.web-toast-notify-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
  line-height: 1.3;
}

.web-toast-notify-message {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  word-wrap: break-word;
}

.web-toast-notify-close {
  position: absolute;
  top: 12px;
  right: 12px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.web-toast-notify-close:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.08);
}

.web-toast-notify-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  transform-origin: left;
  animation: web-toast-progress linear forwards;
  opacity: 0.7;
}

@keyframes web-toast-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.web-toast-success {
  border-left: 5px solid #07bc0c !important;
  background: white !important;
  color: inherit !important;
}

.web-toast-success .web-toast-notify-icon {
  color: #07bc0c;
}

.web-toast-success .web-toast-notify-progress {
  background: #07bc0c;
}

.web-toast-error {
  border-left: 5px solid #e74c3c !important;
  background: white !important;
  color: inherit !important;
}

.web-toast-error .web-toast-notify-icon {
  color: #e74c3c;
}

.web-toast-error .web-toast-notify-progress {
  background: #e74c3c;
}

.web-toast-warning {
  border-left: 5px solid #f39c12 !important;
  background: white !important;
  color: inherit !important;
}

.web-toast-warning .web-toast-notify-icon {
  color: #f39c12;
}

.web-toast-warning .web-toast-notify-progress {
  background: #f39c12;
}

.web-toast-info {
  border-left: 5px solid #3498db !important;
  background: white !important;
  color: inherit !important;
}

.web-toast-info .web-toast-notify-icon {
  color: #3498db;
}

.web-toast-info .web-toast-notify-progress {
  background: #3498db;
}
