.logo-image {
    height: auto !important;
    width: auto !important;
}

/* CIO-AI-Driven: EasyAdmin renders checkbox/switch fields without the "label row" spacing that text inputs have.
   Align boolean inputs vertically with text/select fields by pushing the widget down by the label height. */
.cio-boolean-align .form-widget {
    margin-top: 1.8125rem; /* ~29px */
}

/* CIO-AI-Driven: EasyAdmin uses text-left/text-center/text-right in datagrid headers.
   In Bootstrap 5, text-left is not a standard utility anymore (use text-start).
   Keep compatibility so headers/cells still align as intended. */
.text-left {
    text-align: left !important;
}