/* formatting for salons results table only */

TABLE, THEAD, TBODY, TR, TD, TH {
font-size: inherit;
font-family: inherit;
}

TABLE.salons {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  border-collapse: collapse;
  vertical-align: top;
}

TABLE.salons TD {
  padding: 4px 6px 4px 6px; 
  border: 2px solid white;
}

TABLE.salons TD.cat {
  /* white-space: nowrap; */
  vertical-align: top;
}

TABLE.salons TD.comp {
  /* white-space: nowrap; */
  vertical-align: top;
}


/* Added 23-Oct-2023 to replace the earlier table-shdading routine in JavaScript */

TR:nth-child(odd) {
  background-color: #EEEEEE;
}
TR:nth-child(even) {
  background-color: #CCCCCC;
}
