/* Hide the Select2 arrow ONLY for the SDC field */
.form-item-reporting-agency-and-source-destination-code-sdc 
.select2-selection__arrow {
    display: none !important;
}


/* Re-align text since arrow is gone */
.form-item-reporting-agency-and-source-destination-code-sdc 
.select2-selection--single {
    padding-right: 0 !important;
}


/* Match native select height, border, and style */
.form-item-reporting-agency-and-source-destination-code-sdc
.select2-container--default .select2-selection--single {
    height: 3.0rem;                     /* matches .form-select */
    border: 1px solid #d0d0d0;          /* Drupal form border */
    border-radius: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-left: .75rem;               /* matches form-select padding */
}


/* Match label spacing and styling (uses existing Webform CSS) */
.form-item-reporting-agency-and-source-destination-code-sdc 
label.option-before {
    margin-bottom: .5rem;
    font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #727272 !important;
}

/* Increase visible height of Select2 dropdown */
.select2-results__options {
    width: 500px !important;  /* adjust to your preferred width */
    max-height: 400px !important;  /* 10 items roughly */
    background-color:#fff
}
