/* Select2 field styling */
.select2-container {
    max-width: 100%;
    box-sizing: border-box;
    z-index: 100005;
    min-width: unset;
  }
  
  /* Select2 dropdown styling */
  /* .select2-container .select2-dropdown {
    z-index: 100005 !important;
    position: absolute;
    width: auto; /* Allow it to adjust dynamically */
  } */
  
  /* Ensure dropdown matches the width of the field */
  .select2-container--open .select2-dropdown {
    min-width: 100%; /* Ensure dropdown width matches the input */
  }

  .select2-selection__arrow {
    height: 40px !important;
  }

  .select2-container .select2-selection--single {
    height: 40px;
  }
  