/* Style Switcher minimal styles */
.demo-style-switch {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.demo-style-switch .switch-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.demo-style-switch .switched-options {
  display: none;
  width: 240px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.demo-style-switch.open .switched-options {
  display: block;
}

.demo-style-switch .config-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 10px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.demo-style-switch .styles {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.demo-style-switch .styles li { margin: 0; padding: 0; }

.demo-style-switch .color {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0.08);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.demo-style-switch .color:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
.demo-style-switch .color.active { outline: 2px solid #111827; outline-offset: 2px; }

/* Approximate swatch colors for quick preview */
.demo-style-switch .oldRose { background:#c15866; }
.demo-style-switch .wildBlue { background:#7f8ac6; }
.demo-style-switch .nomad { background:#b9a38f; }
.demo-style-switch .viridian { background:#3b8f7b; }
.demo-style-switch .pink { background:#ff6ca1; }
.demo-style-switch .coffee { background:#6f4e37; }
.demo-style-switch .royal { background:#4169e1; }
.demo-style-switch .sky { background:#00aaff; }
.demo-style-switch .olive { background:#808000; }

.demo-style-switch select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}