.smartcv-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.smartcv-toast {
  min-width: 220px;
  max-width: min(440px, calc(100vw - 32px));
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: auto;
}

.smartcv-toast.is-show {
  opacity: 1;
  transform: translateY(0);
}

.smartcv-toast.is-info {
  background: #2563eb;
}

.smartcv-toast.is-success {
  background: #059669;
}

.smartcv-toast.is-warning {
  background: #d97706;
}

.smartcv-toast.is-error {
  background: #dc2626;
}

@media (max-width: 768px) {
  .smartcv-toast-container {
    bottom: 20px;
    left: 10px;
    right: 10px;
    top: auto;
  }

  .smartcv-toast {
    max-width: none;
    width: 100%;
  }
}
