.custom-select-container,
.custom-select-value,
.custom-select-options,
.custom-select-option {
  box-sizing: border-box;
}

.custom-select-container{
  position: relative;
}

.custom-select-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 200px; */
  border: 1px solid black;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  user-select: none;
}

.custom-select-value::after {
  content: "";
  display: inline-block;
  border: 4px solid transparent;
  border-top-color: black;
}
.custom-select-value:focus {
  border-width: 2px;
  outline: none;
}

.custom-select-options {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  border: 2px solid black;
  width: 100%;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
}
.custom-select-options.show {
  display: block;
  background-color: white;
}
.custom-select-option {
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
.custom-select-option.selected {
  background-color: hsl(200, 100%, 50%);
}

.custom-select-option:hover {
  background-color: hsl(200, 100%, 70%);
}
