.custom-select-trigger {
    border: 1px solid #565c65;
    padding: 0.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 352px;
    height: 2.5rem;
    background-color: white;
  }

  .custom-select-trigger svg {
    margin-left: 0.5rem;
  }

  .dropdown-panel {
    display: none;
    position: absolute;
    z-index: 100;
    background: white;
    border: 2px solid #9DA4B1;
    padding: 1rem;
    right: 93px;
    max-height: 400px;
    overflow: auto;
    width: 92%;
  }


  .filter-columns {
    display: flex;
    gap: 0.5rem;
  }

  .filter-column {
    flex: 1;
    border: 1px solid #F9EFD7;
  }

  .modal-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .modal-panel {
    display: none;
    position: fixed;
    top: 10vh;
    left: 5%;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    background: white;
    padding: 1rem;
    z-index: 1001;
    border: 2px solid #005ea2;
  }

  .usa-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px;
    border-bottom: 2px solid #ECCF87;
    background-color: #EDEFF0;
  }

  .header__container{
    background-color: #F9EFD7;
    padding: 1rem;
  }

  .usa-modal__header h2 {
    margin: 0 auto;
    text-align: center;
  }

  .usa-modal__header button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
  }

  .usa-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 2px solid #ECCF87;
  }

  .usa-modal__footer .usa-button {
    font-size: 0.875rem;
  }

  .main-search {
    display: flex;
    align-items: flex-end;
  }

  .width-16 {
   width: 8.5rem;
  } 
  .usa-card__img img {
    height: 89%;
  }

@media (max-width: 64em) {
    .main-search {
      flex-direction: column;
      align-items: stretch;
    }

    .custom-select-trigger {
      width: auto;
    }

    .dropdown-panel {
      display: none !important;
    }

    .modal-backdrop.show,
    .modal-panel.show {
      display: block;
    }

    .filter-column {
      padding:0;
      border:none;
      height: unset;
    }

    .vl-search-container__inner {
    .usa-button {
        width: 100%;
        border-radius: 4px;
        }
    }
  }


    @media (min-width: 64.01em) and (max-width: 78em) {
      .grid-container {
        padding-left:2rem;
        padding-right:2rem;
      }
  }