#vcet-avatar-maker {
  text-align: center;
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.frame-select {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.frame-thumb {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  cursor: pointer;
  border-radius: 8px;
}
.frame-thumb.selected {
  border-color: #007bff;
}
canvas {
  border: 1px solid #ccc;
  margin-top: 10px;
  touch-action: none;
  max-width: 100%;
}
#controls {
  margin-top: 10px;
}
input[type="range"] {
  margin: 5px;
}
