.custom-select-container {
  position: relative;
  width: 100%;
}

.select-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  border-radius: 40px;
  padding: 0 22px;
  cursor: pointer;
  letter-spacing: 1%;
  color: #000;
  border: 1px solid #f0f0f0;
  background-color: #f0f0f0;
  box-sizing: border-box;
}

.selected-option {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.placeholder {
  color: white;
}

.dropdown-icon {
  transition: all 0.3s ease;
  position: absolute;
  right: 22px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.dropdown-menu {
  box-shadow: 6px 6px 66px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  top: 30px; /* Adjust this value to move the dropdown upwards or downwards */
  border-radius: 20px;
  background-color: white;
  z-index: 10;
  padding: 0;
  box-sizing: border-box;
}

.option-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  letter-spacing: 1%;
  color: #000;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 50px;
  padding: 0 22px;
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.option-item:hover {
  background-color: #e9e9e9;
}

.option-item.first-item:hover {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.option-item.last-item:hover {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .select-box {
    height: 52px;
  }
  .dropdown-menu {
    top: 54px;
  }
  .selected-option {
    font-size: 18px;
  }
}
