.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #ffffff;
  border-radius: 25px;
  border: solid 1px #000000;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 24px;
  padding-right: 30px;
  position: relative;
  text-align: center !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  color: #000000;
  width: 236px;
}

@media (max-width: 768px) {
  .nice-select {
      font-size: 12px; /* Reduce font size for smaller screens */
      height: 36px;
      line-height: 34px;
      padding-left: 16px;
      padding-right: 24px;
      width: 100%; /* Make it responsive */
      border-radius: 20px;
  }
}


.nice-select:hover {
  border-color: #000000; /* Black border on hover */
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #333333;
}

.nice-select:after {
  border-bottom: 2px solid #000000; /* Black arrow */
  border-right: 2px solid #000000; /* Black arrow */
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #dddddd;
  color: #aaaaaa;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.right {
  float: right;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select .list {
  background-color: #ffffff; /* White background */
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  color: #000000; /* Black text */
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f5f5f5; /* Light gray background on hover */
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #aaaaaa;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}
