body{
}
.calendar{
    margin: auto;
    max-width: 800px;
    font-family: serif;
    font-weight: bold;
    color: black;
}
.month{
    text-align: center;
    background: #CC0000;
    font-family: serif;
    font-size: 70px;
    letter-spacing: 1px;
    color: white;
    border:2px solid #CC0000;
}
table, th, td{
    width: 100%;
    table-layout: fixed;
    text-align: center;
    font-size: 15px;  /* Fixed: colon instead of semicolon */
    border-collapse: collapse;
    border: 3px solid white;
    font-family: Arial, sans-serif;  /* More reliable font */
}
tr, th, td{
   padding: 15px;
}
th{
   background: #CC0000;  /* Added missing semicolon */
   color: white;
   font-family: "Arial Black", arial, sans-serif;  /* More reliable font */
}
td {
    background: #19386d;
    color: white;
    height: 90px;  /* Add this - adjust the number to get the square look you want */
    position: relative;
    vertical-align: top;
    text-align: left;
    padding: 5px;
}
.game-text {
    font-size: 12px;
    position: absolute;
    top: 58%;
    left: 55%;
    transform: translate(-58%, -55%);  /* Centers both ways */
    line-height: 1.2;
    text-align: center;
    text-decoration: inherit;
}
.game-day {
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: top center;
}
td a {
    color: inherit;  /* Keeps the white text color */
    text-decoration: underline;
}

td a:hover {
    text-decoration: underline;  /* Adds underline on hover */
}
.sold-out {
    color: red;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-58%, -55%);  /* Centers both ways */
    line-height: 1.2;
    text-align: center;
    transform: translateX(-50%);
}
.toronto {
    background-image: url('img/toronto.png');
}
.tampa {
    background-image: url('img/tampa.png');
}
.cincinnati {
    background-image: url('img/cincinnati.png');
}
.rockies {
    background-image: url('img/rockies.png');
}
.dodgers {
    background-image: url('img/dodgers.png');
}
.kansas {
    background-image: url('img/kansas.png');
}
.houston {
    background-image: url('img/houston.png');
}
.miami {
    background-image: url('img/miami.png');
}
.baltimore {
    background-image: url('img/baltimore.png');
}
.pittsburgh {
    background-image: url('img/pittsburgh.png');
}
.cleveland {
    background-image: url('img/cleveland.png');
}
.yankees {
    background-image: url('img/yankees.png');
}
.athletics {
    background-image: url('img/athletics.png');
}
.detroit {
    background-image: url('img/detroit.png');
}