.custom-combobox {
  position: relative;
}
.custom-combobox .selected-option {
  align-content: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  padding: 12px 46px 12px 16px;
  background-color: #f8f8f8;
  border-radius: 8px;
  color: #414141;
  cursor: pointer;
  position: relative;
  min-width: 154px;
  box-sizing: border-box;
}
.custom-combobox .selected-option:after {
  content: '▼';
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: darkgrey;
}
.custom-combobox .selected-option:hover {
  background-color: #eaeaea;
}
.custom-combobox .options {
  display: none;
  flex-direction: column;
  gap: .4rem;
  padding: .4rem;
  position: absolute;
  top: 114%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 10;
  overflow: hidden;
}
.custom-combobox.open .options {
  display: flex;
}
.custom-combobox .options .option {
  cursor: pointer;
  color: #414141;
  text-align: center;
}
.custom-combobox .options .option:hover, .custom-combobox .options .option.selected {
  background-color: #ff533d;
  color: white;
  border-radius: 6px;
}