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

.custom-select-container {
  display: inline-block;
  position: relative;
}

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

.custom-select-container:focus > .custom-select-value {
  outline: none;
}

.custom-select-value::after {
  content: "";
  display: inline-block;
  border: 4px solid transparent;
  border-top-color: black;
  margin-left: 12px;
  margin-top: 4px;
}

.custom-select-options {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  border: 1px solid black;
  background-color: white;
  width: 100%;
  border-top: none;
  max-height: 200px;
  overflow-y: scroll;
}
.custom-select-options::-webkit-scrollbar {
  display: block;
}
.custom-select-options::-webkit-scrollbar-track {
  width: 10px;
  background-color: #e7e9ef;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background-color: #292f3d;
}

.custom-select-options.show {
  display: block;
}

.custom-select-option {
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  user-select: none;
}

.custom-select-option:hover {
  background-color: #f2a6bb;
}

.custom-select-option.selected {
  background-color: #e43f6f;
}
