@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');

/* standard page rules */
body {
    background-color: var(--color-primary1);
    font-family: 'Fira Sans',sans-serif;
}

/* Text rules*/
h1 {
    color: var(--color-accent1);
    font-size: 5rem;
    text-align: center;
    text-shadow: 1px 1px 0px #000;
}

/* Table Styling */
table.run_schedule {
    width: 90%;
    margin: 20px auto;
    background-color: #EEE;
    font-size: 2rem;
    border-collapse: collapse; /* force tables to share borders */
}

td {
    text-align: center;
}

td, th {
    
    padding: 4px;
}

.run_schedule .day_of_week th{
    font-size: 3rem;
    font-weight: bold;
    color: #EEE;
    background-color: #50E;
    height: 50px;
}

tr:nth-child(odd)  {
    background-color: lightgrey;
}

h2 {
    display: none;
}


@media print {
    h2 {
        display:inline-flex;
        padding-left: 35%;
        padding-top: 10%;
    }
    .run_schedule {
        width:6.5in;
    }
}