/* Custom dropdown list styling */
.select-list-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.select-list {
  font-family: var(--font-main);
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: var(--font-medium);
  border-radius: 12px;
  border: 2px solid var(--black);
  background-color: var(--white);
  cursor: pointer;
  appearance: none;
  outline: none;
}

/* Arrow icon for the dropdown */
.select-list-container i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.25rem;
  color: var(--black);
}