* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            text-align: center;
            padding: 1.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        header h1 {
            font-size: 2.2rem;
            font-weight: bold;
        }
        
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }
        
        .quick-result-board {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .board-title {
            background-color: #3949ab;
            color: white;
            text-align: center;
        }
        
        .board-title h1 {
            padding: 15px;
            font-size: 1.4rem;
        }
        
        .board-head {
            background-color: #f0f0f0;
        }
        
        .board-head th {
            padding: 12px;
            font-weight: bold;
        }
        
        .games-name {
            width: 50%;
        }
        
        .yesterday-date, .today-date {
            width: 25%;
        }
        
        .game-result {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .game-result:nth-child(odd) {
            background-color: #f9f9f9;
        }
        
        .game-result:hover {
            background-color: #f0f4ff;
        }
        
        .game-details {
            padding: 15px;
        }
        
        .game-name {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #1a237e;
        }
        
        .game-time {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        .game-link a {
            color: #3949ab;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .game-link a:hover {
            text-decoration: underline;
        }
        
        .yesterday-number, .today-number {
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 15px;
        }
        
        .today-number h3 {
            color: #d32f2f;
        }
        
        #old {
            background-color: #f0f0f0;
        }
        
        #old h2 {
            padding: 10px;
        }
        
        #old a {
            color: #3949ab;
            text-decoration: none;
        }
        
        /* Monthly results styling */
        #monthly-results {
            margin-top: 30px;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        #monthly-results h2 {
            color: #1a237e;
            margin-bottom: 15px;
            text-align: center;
            font-size: 1.6rem;
        }
        
        #monthly-results form {
            margin-bottom: 20px;
            text-align: center;
        }
        
        #monthly-results select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        #monthly-results table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        #monthly-results table th, 
        #monthly-results table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }
        
        #monthly-results table th {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        
        #monthly-results table th small {
            display: block;
            font-size: 0.8rem;
        }
        
        #monthly-results .highlight {
            background-color: #e8f0fe;
        }
        
        #monthly-results .error {
            color: #d32f2f;
            text-align: center;
            padding: 15px;
        }
        
        @media (max-width: 768px) {
            .board-title h1 {
                font-size: 1.1rem;
            }
            
            .game-name, .game-time, .game-link {
                font-size: 0.9rem;
            }
            
            .yesterday-number, .today-number {
                font-size: 1rem;
            }
            
            #monthly-results {
                overflow-x: auto;
            }
            
            #monthly-results table {
                min-width: 600px;
            }
        }
    /* Add this inside your existing style tags */

/* Special monthly chart styling */
#mix-chart {
    margin-top: 30px;
    margin-bottom: 30px;
}

.chart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    min-width: 540px; /* Increased minimum width for 5 columns */
}

.chart-head {
    background-color: #3949ab;
    color: white;
    text-align: center;
}

.chart-head h1 {
    padding: 15px;
    font-size: 1.4rem;
    margin: 0;
}

.date-name {
    background-color: #f0f0f0;
    font-weight: bold;
}

.date-name td, .date-name th {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.day-number td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.day-number:nth-child(even) {
    background-color: #f9f9f9;
}

.day {
    font-weight: bold;
    background-color: #f0f0f0;
}

.number {
    font-weight: bold;
    font-size: 1.1rem;
    color: #d32f2f;
}

.space {
    height: 15px;
    background-color: #f5f5f5;
}

.option {
    background-color: #f0f0f0;
    text-align: center;
}

.e-link a {
    display: block;
    padding: 10px 0;
    color: #3949ab;
    text-decoration: none;
}

.e-link a:hover {
    background-color: #e8eaf6;
}

.aero {
    margin: 0;
    font-size: 1rem;
}

.s-link {
    color: #777;
    text-align: center;
}

@media (max-width: 768px) {
    .chart-head h1 {
        font-size: 1rem;
        padding: 10px;
    }
    
    .day-number td {
        padding: 6px;
        font-size: 0.9rem;
    }
    
    .aero {
        font-size: 0.9rem;
    }
}

/* Styling for the monthly chart */
.chart-table .day {
    font-weight: bold;
    background-color: #f9f9f9;
    text-align: center;
}

/* Style for displayed results */
.result-value {
    display: block;
    font-weight: bold;
    color: #d32f2f;
    transition: all 0.3s ease;
}

/* Style for no-result placeholders */
.no-result {
    display: block;
    color: #9e9e9e;
    font-weight: normal;
}

/* Add hover effects */
.day-number:hover .result-value {
    transform: scale(1.1);
}

/* Special animation for today's results */
.highlight .result-value {
    animation: pulse-result 2s infinite alternate;
}

@keyframes pulse-result {
    0% { color: #d32f2f; }
    100% { color: #ff6b6b; }
}

/* Disabled next month link */
.aero.disabled {
    color: #9e9e9e;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Additional table styling */
.chart-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chart-table tr.date-name {
    background-color: #f0f0f0;
    font-weight: bold;
}

.chart-table .date-name td, 
.chart-table .date-name th {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 2px solid #ddd;
}

.chart-table .day-number td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.chart-table .space {
    height: 15px;
    background-color: #f5f5f5;
}

.chart-table .option {
    background-color: #f5f5f5;
}

.chart-table .option td {
    padding: 15px 5px;
    text-align: center;
}

.chart-table .option td a {
    display: block;
    padding: 8px;
    background: linear-gradient(to right, #3949ab, #5c6bc0);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.chart-table .option td a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.chart-table .aero {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

/* Enhance mobile view */
@media (max-width: 768px) {
    .chart-table .day {
        font-size: 0.9rem;
    }
    
    .chart-table .date-name td,
    .chart-table .date-name th,
    .chart-table .day-number td {
        padding: 8px 4px;
        font-size: 0.85rem;
    }
    
    .chart-table .aero {
        font-size: 0.9rem;
    }
}