/*
====================================
Cascading Stylesheet File
Written by _<Your Name>_ on _<Date>_
====================================
*/

/* Pokemon Styles. Added on 2.6.2025. */
/* Written by Bryce Summers. */


.highlight
{
    background-color:yellow;
}
tr:nth-child(n+2) td:nth-child(even):not(.highlight)
{
    background-color:#eeeeee
}

/* x axis headings on top of each column. */
th:nth-child(n+2)
{
    border-color:black;
    border-bottom-width:1px;
    border-bottom-style: solid;
}

/* y axis headings on left of table. */
th:first-child
{
    font-size:16px;
    padding-right:5px;

    border-color:black;
    border-right-width:1px;
    border-right-style: solid;
}
table
{
    border-collapse: collapse;
}

td
{
  text-align:center;
  font-size: 20pt;
}


/* Draw the rest of the bottom and right borders, only on table data boxes. */
tr:last-child td:nth-child(n+2)
{
    border-color:black;
    border-bottom-width:1px;
    border-bottom-style: solid;
}

td:last-child
{
    border-color:black;
    border-right-width:1px;
    border-right-style: solid;
}

tr:nth-child(n+2) td + th
{
    border-color:black;
    border-left-width:1px;
    border-left-style: solid;
}

.xscroll
{
  overflow-x:auto;
}

.yscroll
{
  overflow-x:auto; /* Display scrollbar if needed. */
  max-height:600px;
}

.xyscroll
{
  overflow-x:auto;
  overflow-y:auto;
  max-height:600px;
}

img
{
    width:240px;
    height:330px;
}