/* dcc.Dropdown and dcc.DatePickerSingle set their own text-align on deeply
   nested internal elements, so the .text-center class on their parent Col
   (see dash_dashboard.py's _leg_row/_header_row) doesn't reach them via
   inheritance — these target their known internal class names directly. */

.leg-row .Select-value-label,
.leg-row .Select-placeholder,
.leg-row .Select-input {
    text-align: center;
    width: 100%;
}

.leg-row .DateInput_input {
    text-align: center;
}
