/* Style for the custom dropdown container */
.custom-dropdown {
    position: relative;
    /* width: 200px; */
    /* font-family: Arial, sans-serif; */
  }

  /* Style for the selected option */
  .custom-dropdown .selected {
    /* padding: 10px; */
    /* border: 1px solid #ccc; */
    /* border-radius: 4px; */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .ten-mile{
    display: none;
  }

  /* Dropdown arrow icon */
  .custom-dropdown .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s;
  }

  /* Rotate arrow when dropdown is dropdown-active */
  .custom-dropdown.dropdown-active .arrow {
    transform: rotate(-135deg);
  }

  /* Style for the dropdown options list */
  .custom-dropdown .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
  }

  /* Show options list when dropdown is dropdown-active */
  .custom-dropdown.dropdown-active .options {
    display: block;
    scrollbar-width: none;
  }

  custom-dropdown.dropdown-active .options::-webkit-scrollbar {
    display: none;
  }

  /* Style for individual options */
  .custom-dropdown .option {
    padding:0 14px;
    padding-left: 12px;
    cursor: pointer;
    color: #333;
    margin: 20px 0;
  }


  /* Hover and selected styles for options */
  .custom-dropdown .option:hover {
    background-color: transparent;
  }
  .custom-dropdown .option.selected {
    color: #09549F;
    font-weight: normal;
  }