@charset "utf-8";
/* CSS HEX */
/*
--deep blue: #1c30a3;
--light blue: #a8d6ff;
--black: #000000;
--white: #ffffff;

*/
table {
    width: fit-content;
    font-size: small;
    caption-side: top;
}
tr:nth-child(2n) {
    background-color: #1c30a399;
}
tr:hover  {
    background-color: whitesmoke;
}

body {
    border-right: solid black 1px;
    border-left: solid black 1px;
}
table, td, th {
    padding: 5px;
    border-spacing: 12px;
    border: solid 1px;
    border-collapse: collapse;
    max-width: 100%;
}

thead {
    border-top: double 4px;
    border-bottom: double 4px;
    margin-top: 100px;
}

th {
    background-color: #1c30a3;
    color: #eee;
    border-right: solid black 1px;
    border-left: solid black 1px;
}


tfoot {
    background-color:#ffffff;
}

@media screen and (min-width: 768px) {
    table {
        font-size: medium;
        overflow-x:auto;
    }
}