/* session.css */

/* table.month */

table.month {
    width: 100%;
}

table.month th {
    padding: 1rem;
}

table.month tr,
table.month td {
    padding: 1rem .5rem;
    border: 3px solid #fff;
}

table.month tr:nth-of-type(odd){
    background-color: #f7f7f7;
}

table.month tr:nth-of-type(even){
    background-color: #fcfcfc;
}

table.month td:first-of-type {
    white-space: nowrap;
    width: 10%;
}