.demo-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  margin-top: 15px;
}

.style-selector {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.style-selector button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  cursor: pointer;
  border-radius: 4px;
  text-align: left;
  font-size: 14px;
}

.style-selector button:hover {
  background: #e9ecef;
}

.style-selector button.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.demo-list-container {
  padding: 20px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

#interactive-demo-list {
  margin: 0;
  list-style-type: disc;
}