  /* General Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            padding: 10px;
            line-height: 1.6;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            padding: 10px;
            overflow-x: auto;
        }

        /* Header */
        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
            text-align: center;
        }

        .title {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 5px;
        }

        .current-month-year {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 10px;
        }

        /* Controls */
        .controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .btn-nav {
            background-color: #800000;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            min-width: 80px;
            font-size: 0.9em;
            transition: background-color 0.2s;
        }

        .btn-nav:hover {
            background-color: #600000;
        }

        .has-schedule {
    background-color: #ffe6e6;
    border: 2px solid #800000;
    cursor: pointer;
}


        /* Calendar Table */
        .calendar {
            width: 100%;
            border-collapse: collapse;
            overflow-x: auto;
        }

        .calendar th {
            background-color: #666;
            color: white;
            padding: 8px;
            text-align: center;
            font-weight: normal;
            font-size: 0.8em; /* Smaller font size */
        }

        .calendar td {
            border: 1px solid #ddd;
            padding: 5px;
            height: 60px;
            vertical-align: top;
            font-size: 0.9em;
        }

        .date {
            font-size: 0.9em;
            color: #333;
            margin-bottom: 2px;
            text-align: center;
        }

        .disabled-day {
            background-color: #f5f5f5;
        }

        /* Schedule Display (Initially hidden) */
        .schedule-container {
            display: none; /* Initially hidden */
            margin-top: 20px;
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 4px;
        }

        .schedule-container h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .schedule-container p {
            margin-bottom: 5px;
        }

        /* Mobile View - 5 Day Week */
        @media (max-width: 600px) {
            .header {
                align-items: flex-start;
            }

            .controls {
                flex-direction: column;
                align-items: center;
            }

            .btn-nav {
                width: 100%;
                margin-bottom: 5px;
            }
            /* Adjusting column width */
            .calendar th, .calendar td {
                width: 14%; /* Set width for five days */
            }
            /* Hide Saturday and Sunday */
            .calendar th:nth-child(6), /* Saturday */
            .calendar th:nth-child(7), /* Sunday */
            .calendar td:nth-child(6), /* Saturday */
            .calendar td:nth-child(7) { /* Sunday */
                display: none;
            }
            /* Show first letters for the days */
            .calendar th:nth-child(1) { content: "M"; }
            .calendar th:nth-child(2) { content: "T"; }
            .calendar th:nth-child(3) { content: "W"; }
            .calendar th:nth-child(4) { content: "T"; }
            .calendar th:nth-child(5) { content: "F"; }
        }

        button {
    background-color: #800000; /* Maroon */
    color: white; /* White text */
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #600000; /* Darker maroon on hover */
}