.zw-webinars h1,
.zw-webinars h2,
.zw-webinars h3,
.zw-webinars p,
.zw-webinars span,
.zw-webinars a {
  color: #3c3c3c;
}

.zw-webinars .text-white,
.zw-webinars .text-white\:80,
.zw-webinars .text-white\/80 {
  color: #ffffff !important;
}

.zw-webinars .zw-toast-root {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zw-webinars .zw-toast {
  min-width: 240px;
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(61, 22, 112, 0.18);
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  animation: zw-toast-in 0.2s ease-out;
}

.zw-webinars .zw-toast.is-error {
  border-color: #fca5a5;
  background: #fff5f5;
}

.zw-webinars .zw-toast-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.zw-webinars .zw-toast-description {
  color: #475569;
}

.zw-webinars .zw-toast.is-hide {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes zw-toast-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
