/* Over-arching VaTable rules that apply across the whole application.
   Loaded globally by BasePage (see BasePage#setupPackageResources) so individual
   panels don't have to repeat cross-cutting table styling. Panel-specific table
   styling still belongs in that panel's own CSS. */

/* Phone numbers are stored in the international display format (e.g. "+44 7700 900123").
   The spaces would otherwise let a cell wrap mid-number, so keep phone/mobile columns
   on a single line wherever they appear in a VaTable. */
.va-table .va-column-mobile.data,
.va-table .va-column-mobile-editable.data,
.va-table .va-column-phone.data,
.va-table .va-column-home-number.data,
.va-table .va-column-phone-number.data {
    white-space: nowrap;
}
