/* Golf Fixtures Frontend Styles - Matches Original Design */

.golf-fixtures-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fixtures-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.fixtures-divider {
    width: 500px;
    height: 2px;
    background-color: #1e3a8a;
    margin: 0 auto 60px;
}

.month-section {
    margin-bottom: 60px;
}

.month-title {
    text-align: center;
    font-size: 2rem;
    color: #9ca3af;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
}

.fixtures-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.fixtures-table tbody tr {
    border: 1px solid #d1d5db;
}

.fixtures-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.fixtures-table tbody tr:nth-child(odd) {
    background-color: white;
}

.fixtures-table td {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    color: #1e3a8a;
    font-size: 0.95rem;
}

.fixtures-table .day-name {
    font-weight: 500;
    width: 150px;
}

.fixtures-table .day-number {
    width: 100px;
}

.fixtures-table .event-name {
    /* Takes remaining space */
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixtures-title {
        font-size: 2rem;
    }
    
    .fixtures-divider {
        width: 80%;
    }
    
    .month-title {
        font-size: 1.5rem;
    }
    
    .fixtures-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .fixtures-table .day-name {
        width: auto;
        font-size: 0.85rem;
    }
    
    .fixtures-table .day-number {
        width: auto;
    }
}