/* Custom styles for Chosen with form-floating */
.form-floating .chosen-container {
    width: 100% !important;
    height: 58px;
}

.form-floating .chosen-container-single .chosen-single {
    height: 58px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.form-floating .chosen-container-active .chosen-single {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating .chosen-container-single .chosen-drop {
    margin-top: 2px;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
}

.form-floating .chosen-container .chosen-results li.highlighted {
    background: #0d6efd;
}

.form-floating label {
    z-index: 5;
}

/* Ensure the chosen container doesn't overlap with the floating label */
.form-floating .chosen-container-single .chosen-single span {
    margin-top: 0.5rem;
}

/* Position the dropdown arrow correctly */
.form-floating .chosen-container-single .chosen-single div {
    top: 10px;
}