/* AI buyer-conversations toggle card on the dashboard (.dashboard-card base) */

.dashboard-ai-assistant-description {
  color: #00283cb2;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.dashboard-ai-assistant-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.dashboard-ai-assistant-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dashboard-ai-assistant-slider {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: #dce6ea;
  transition: background 0.15s ease;
}

.dashboard-ai-assistant-slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px #00283c33;
  transition: transform 0.15s ease;
}

.dashboard-ai-assistant-checkbox:checked + .dashboard-ai-assistant-slider {
  background: #ffd91a;
}

.dashboard-ai-assistant-checkbox:checked + .dashboard-ai-assistant-slider::after {
  transform: translateX(20px);
}

.dashboard-ai-assistant-checkbox:focus-visible + .dashboard-ai-assistant-slider {
  outline: 2px solid #52b8cd;
  outline-offset: 2px;
}

.dashboard-ai-assistant-state {
  color: #00283c;
  font-size: 14px;
  font-weight: 700;
}
