/* Adjust the width of the role, region, and sala selectors */
#user_role,
#user_region,
#user_sala {
    width: 100%; /* Makes the selector full width of its container */
    max-width: 300px; /* Adjust the max-width to your preference */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
}

/* Optional: Style individual selectors differently */
/* For the role selector */
#user_role {
    max-width: 250px;
}

/* For the region selector */
#user_region {
    max-width: 300px;
}

/* For the sala selector */
#user_sala {
    max-width: 350px;
}