
.version-selector {
  position: relative;
  font-family: sans-serif;
  font-size: 14px;
  width: 140px;
  user-select: none;
  display: inline-block;
}

.version-selected {
  padding: 8px 24px 8px 12px;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  color: #fff;
}
/* Add ▼ caret with ::after */
.version-selected::after {
  content: '▼';
  position: absolute;
  right: 0px;
  top: 48%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #fff;
  pointer-events: none;
}

.version-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 4px 0;
  border-radius: 6px;
  background-color: #fff;
  list-style: none;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width:80px;
}

.version-options li {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
  color:#000;
}

.version-options li:hover,
.version-options li.active {
  background-color: #f0f0f0;
}
