/* Switch component styling */
[data-component="switch"] {
  position: relative;
  display: inline-flex;
  height: 24px;
  width: 44px;
  border-radius: 9999px;
  background-color: var(--muted);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

[data-component="switch"][data-state="checked"] {
  background-color: var(--accent);
}

[data-component="switch-thumb"] {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--background);
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  transform: translateX(2px);
  margin: 2px;
}

[data-component="switch"][data-state="checked"] [data-component="switch-thumb"] {
  transform: translateX(20px);
}

[data-component="switch"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
