/* ===============================
   Common Styles for All Sports
   =============================== */
/* 기본 테이블 스타일 */
.standings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
}

.standings-table thead th {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 8px;
    font-size: 14px;
    border: none;
    text-align: center;
}

.standings-table thead th:first-child {
    border-top-left-radius: 3px;
}

.standings-table thead th:last-child {
    border-top-right-radius: 3px;
}

/* 테이블 행 스타일 */
.standings-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.standings-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-align: center;
}

/* 팀 정보 스타일 */
.team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 데이터 로딩 메시지 */
.data-loading {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin: 10px 0;
    line-height: 1.8;
}

.data-loading h5 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

.data-loading p {
    color: #6c757d;
    margin: 5px 0;
}

.data-loading small {
    color: #ff0000;
    font-weight: bold;
}

/* 최근 5경기 공통 스타일 */
.last-five {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.game-result {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.win { background-color: #2196F3; }
.loss { background-color: #f44336; }
