/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: black;
  text-align:center;
}

th, td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 20;
}

table, th, td {
 border: 1px solid black;
 border-collapse: collapse; 
}

th {
 font-size:22; 
}

.noborder {
    border: none !important; /* The !important is optional but ensures override */
    border-collapse: collapse; /* Often good practice when removing borders */
}

.noborder th,
.noborder td {
    border: none !important;
}

.noborder table th,
.noborder table td {
    border: 1px solid black !important;
}