.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 6px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single {
    display: flex; /* Use flexbox */
    align-items: center; /* Center content vertically */
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* Apply the glow effect when the Select2 field is focused */
.select2-container--default .select2-selection--single:focus {
    border-color: #66afe9; /* Change border color when focused */
    outline: 0; /* Remove default outline */
    -webkit-box-shadow: 0 0 8px rgba(102, 175, 233, .6); /* Add glow effect */
    box-shadow: 0 0 8px rgba(102, 175, 233, .6); /* Add glow effect */
}

label[for="lps_selectionfield"] {
  margin-top: 30px;
}


#lps_selectionfield {
  margin-top: 5px; /* Optional: Add margin to space the select field from the label */
}

.required-asterisk {
  color: #a94442;  /* Set the color of the asterisk to red */
  margin-left: 5px;  /* Add some space between the label text and the asterisk */
}