
        
        .calendar-container {
            background: wheat;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            max-width: 500px;
            margin: 0 auto;
        }
        
        .calendar-header {
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
            color: #333;
        }
        
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            border: 2px solid #333;
        }
        
        .calendar-table th,
        .calendar-table td {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
            width: 14%;
        }
        
        .calendar-table th {
            background-color: #f8f8f8;
            font-weight: bold;
        }
        
        .day-cell {
            height: 60px;
            vertical-align: top;
        }
        
        .day-number {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .chinese-date {
            font-size: 14px;
            color: #666;
        }
        
        .current-day {
            background-color: #e8f4ff;
            border: 2px solid #007bff;
        }
        
        .weekend {
            background-color: #f9f9f9;
        }