/* Custom Select Styles */
.custom-select-container {
  position: relative;
  width: 100%;
  font-family: "Barlow Semi Condensed", sans-serif;
  box-sizing: border-box;
}

.custom-select-trigger {
  background-color: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fbfbfb;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  width: 100%;
  height: 47px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.custom-select-container.open .custom-select-trigger {
  border-color: #03ed4c;
}

.custom-select-trigger .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #fbfbfb;
  opacity: 0.7;
}

.custom-select-container.open .arrow {
  transform: rotate(180deg);
}

.custom-options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.custom-select-container.open .custom-options-list {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.custom-option {
  padding: 12px 16px;
  color: #fbfbfb;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.custom-option:hover {
  background-color: #ffffff1a;
  color: #03ed4c;
}

.custom-option.selected {
  background-color: #03ed4c1a;
  color: #03ed4c;
}

.custom-optgroup-label {
  padding: 8px 16px;
  color: #24c556;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Custom Scrollbar for the list */

.custom-options-list::-webkit-scrollbar {
  width: 6px;
}
.custom-options-list::-webkit-scrollbar-track {
  background: #141414;
}
.custom-options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.custom-options-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
