.camera-controls-compact { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  padding: 0 16px; 
}
.camera-controls-compact label { 
  font-size: 12px; 
  color: #888; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}
.camera-controls-compact input[type="range"] { 
  width: 80px; 
  height: 4px; 
  background: #2a2a2a; 
  border-radius: 2px; 
  outline: none; 
  -webkit-appearance: none; 
}
.camera-controls-compact input[type="range"]::-webkit-slider-thumb { 
  -webkit-appearance: none; 
  width: 10px; 
  height: 10px; 
  background: #4a9eff; 
  border-radius: 50%; 
  cursor: pointer; 
}