body {
            font-family: 'Roboto', sans-serif;
            font-style: normal;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        .calendar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
        }
        .month {
            border: 1px solid #006AA7;
            margin: 10px;
            padding: 10px;
            width: 310px;
            background-color: white;
            font-weight: bold;
            box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .month:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
        }
        .month-name {
            text-align: center;
            padding: 5px;
            color: #fff;
            font-weight: bold;
            margin-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid #ccc;
            text-align: center;
            padding: 5px;
            font-size: 0.8em;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        th {
            background-color: #006AA7;
            color: white;
        }
        td:hover {
            background-color: #006AA7;
            color: white;
transform: scale(1.05);
        }
        .notes {
            font-style: italic;
            font-size: 0.7em;
            margin-top: 10px;
            color: red;
        }
        .highlight {
            background-color: yellow;
        }
        .holiday {
            color: red;
        }
        /* Targeting the numbers (td elements) in the "Sun" column */
        .month table td:nth-child(8) {
            color: red;
        }
        .month th:first-child,
        .month td:first-child {
            font-style: italic;
            font-weight: 300;
        }