.custom-age-dropdown {
  position: relative;
  width: 60px;
  user-select: none;
}
.custom-age-dropdown .selected-value {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  cursor: pointer;
  font-size: 14px;
}
.custom-age-dropdown .dropdown-arrow {
  font-size: 8px;
  color: #666;
}
.custom-age-dropdown .dropdown-options-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin-top: 4px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.custom-age-dropdown .dropdown-options {
  max-height: 200px;
  overflow-y: auto;
}
.custom-age-dropdown .option {
  padding: 6px;
  text-align: center;
  cursor: pointer;
}
.custom-age-dropdown .option:hover {
  background: #f5f5f5;
}
.custom-age-dropdown .option.selected {
  background: #e6f7ff;
  font-weight: bold;
}