.custom-select-wrapper {
  position: relative;
  width: 100%;
  font-family: inherit;
  font-size: 13px;
}

.custom-select-display {
  padding: 2px 30px 2px 7px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 2px;
  cursor: pointer;
  min-height: 23px;
  line-height: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.custom-select-display::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: none;
}

.custom-select-dropdown input {
  width: 100%;
  box-sizing: border-box;
  padding: 6px 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.custom-select-option {
  padding: 5px 5px;
  cursor: pointer;
  font-size: 13px;
  min-height: 22px;
}

.custom-select-option:hover {
  background-color: #f5f5f5;
}
