#height-comparison-app {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}
.hcl-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.hcl-inputs input, .hcl-inputs select {
  padding: 5px;
}
svg {
  border: 1px solid #ccc;
  background: #f9f9f9;
}
.hcl-avatar-wrapper {
  transition: left 0.1s ease;
}
#avatar-gallery img.avatar-option:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
#avatar-gallery img {
  display: inline-block !important;
  border: 2px solid transparent;
  height: 60px;
  margin: 4px;
}
.hcl-avatar-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain; /* or 'fill' */
}