#whsl-toggle.whsl-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: var(--whsl-bg, rgba(0,0,0,0.65));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

#whsl-toggle .whsl-label {
  color: var(--whsl-label, rgba(255,255,255,0.9));
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 0 4px;
  white-space: nowrap;
}

#whsl-toggle .whsl-row {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

#whsl-toggle .whsl-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  background: var(--whsl-btn-bg, rgba(255,255,255,0.14));
  color: var(--whsl-text, #fff);
}

#whsl-toggle .whsl-btn:hover {
  background: var(--whsl-btn-hover, rgba(255,255,255,0.22));
}

#whsl-toggle .whsl-btn.is-active {
  background: var(--whsl-btn-active, rgba(255,255,255,0.35));
}


.whsl-toast {
  position: fixed;
  z-index: 1000000;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--whsl-bg, rgba(0,0,0,0.75));
  color: var(--whsl-text, #fff);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.whsl-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
