/* FUTBOL PUAN DURUMU - SPOR DEPOR STİLİ */

.football-page {
    background: white;
    padding: 20px 0;
}

.football-page .duru-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.football-header {
    background: white;
    padding: 20px;
    margin-bottom: 0;
    border-bottom: 3px solid #111931;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.football-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111931;
    margin: 0 0 5px 0;
}

.football-header p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: none;
}

.football-tabs {
    background: white;
    display: flex;
    border-bottom: 2px solid #d0d0d0;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #111931;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    border-bottom-color: #111931;
    color: #111931;
}

.standings-table {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.standings-table table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table thead {
    background: #1a7c3a;
    color: white;
}

.standings-table th {
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.standings-table th:first-child {
    width: 35px;
}

.standings-table th:nth-child(2) {
    text-align: left;
    border-right: 2px solid rgba(255,255,255,0.4);
}

.standings-table td {
    padding: 10px 8px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.standings-table td:nth-child(2) {
    text-align: left;
    border-right: 2px solid #e8e8e8;
}

.standings-table tbody tr:hover {
    background: #f5f5f5;
}

.standings-table .team-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.standings-table .team-logo {
    font-size: 1.2rem;
}

.standings-table .points {
    font-weight: 700;
    color: #111931;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 2 SÜTUNLU LAYOUT */
.football-content {
    background: white;
}

.standings-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.standings-column {
    flex: 1;
}

.leagues-column {
    flex: 1;
}

/* LİGLER BÖLÜMÜ */
.leagues-box {
    background: #f9f9f9;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 15px;
    height: fit-content;
}

.leagues-box h3 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111931;
    border-bottom: 2px solid #111931;
    padding-bottom: 10px;
}

.leagues-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leagues-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #333;
}

.leagues-list li:last-child {
    border-bottom: none;
}

.league-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    width: 100%;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.league-link:hover {
    background: #f0f0f0;
}

.league-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

.league-name {
    font-weight: 500;
}

/* FİKSTÜR BÖLÜMÜ */
.fixtures-box {
    background: white;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.fixtures-box h3 {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111931;
    border-bottom: 2px solid #111931;
    padding-bottom: 10px;
}

.fixtures-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixture-item {
    background: #f9f9f9;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.fixture-date {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
    font-size: 0.85rem;
    color: #666;
}

.fixture-date .date {
    font-weight: 600;
    color: #111931;
}

.fixture-date .time {
    font-size: 0.8rem;
}

.fixture-match {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.fixture-match .team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.fixture-match .team.home {
    justify-content: flex-end;
}

.fixture-match .team.away {
    justify-content: flex-start;
}

.fixture-match .team-emoji {
    font-size: 1.5rem;
}

.fixture-match .team-name {
    font-weight: 600;
    color: #111931;
    font-size: 0.95rem;
}

.fixture-match .score {
    min-width: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #111931;
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .standings-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .fixture-item {
        flex-direction: column;
        gap: 10px;
    }

    .fixture-match {
        flex-direction: column;
        width: 100%;
    }

    .fixture-match .team {
        width: 100%;
        justify-content: center !important;
    }

    .standings-table {
        font-size: 0.8rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 8px 4px;
    }
}

/* Diğer Ligler Menüsü */
.league-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.league-link:hover {
    background-color: #f0f0f0;
    color: #111931;
}

.league-link.active {
    background-color: #111931;
    color: white;
    font-weight: 600;
}

.league-link .league-icon {
    font-size: 1.1rem;
    min-width: 20px;
}
