﻿/*Title of schedule page*/
#seasonTitle {
    text-align: center;
    margin-top: 0;
}

body{
    padding-bottom: 40px; /*Come back to this*/
}


#seasonTitle h2 {
    display: block;
    background-color: rgb(0, 40, 104);
    color: white;
    padding: 15px 0;
    margin: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/*Period titles*/
.periodSchedule {
    text-align: center;
}

.periodSchedule h3 {
    display: block;
    padding: 10px 0;
    margin: 0; 
}

table{
    background-color: white;
    text-align: center;
    width: 100%;
    border-collapse: collapse;
}

th{
    padding: 10px;
    border-top: 1px solid;
}

td{
        border-top: 1px solid;
        border-bottom: 1px solid;
        border-color: black;
        padding: 10px;
}

p{
    text-align: center;
}

.nat{
    background-color: lightcoral;
}

.double{
    background-color: lightblue;
}

a{
    text-decoration: none;
    color: blue;
}

