body {
    font-family: Arial, sans-serif;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

.categories-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.categories-title {
    text-align: center;
    margin-bottom: 20px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card {
    display: block;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.15s;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.category-name {
    font-size: 1.3em;
    font-weight: 700;
}

/* ========================
   Category detail page - Tabs
   ======================== */
.category-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 0;
    text-align: center;
}

.category-header h1 {
    margin-bottom: 0;
}

.category-tabs {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 10px;
    overflow-x: auto;
}

.category-tab {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.category-tab:hover {
    color: #333;
}

.category-tab.active {
    color: #000;
    border-bottom-color: #000;
}

.tab-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 20px;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-empty {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 0;
}

/* ========================
   Standings Table
   ======================== */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.standings-table th,
.standings-table td {
    padding: 8px 6px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.standings-table thead th {
    background: #f5f5f5;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.standings-table tbody tr:hover {
    background: #fafafa;
}

.standings-team-col {
    text-align: left !important;
    white-space: nowrap;
}
