body {
    padding: 10px;
}

h1 {
    text-align: center;
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 3px solid rgb(33, 2, 68);
    font-size: 18px;
}

th,
td {
    border: 1px solid black;
    height: 24px;
    padding: 0px 3px;
    margin: 0;
}

td {
    text-align: right;
    word-wrap: break-word;
}

th {
    text-align: center;
    font-weight: bold;
    background-color: rgb(81, 184, 132);
    border-width: 2px;
}

tr:nth-child(odd){
    background-color: rgb(247, 247, 229);
}
tr:nth-child(even){
    background-color: rgb(211, 228, 235);
}

.not-today {
    background-color: rgb(243, 124, 124);
    font-weight: bold;
}

.yesterday {
    background-color: rgb(232, 235, 99);
}