/* =========================
   EVENT
========================= */

.event-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.btn-all {
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

/* SLIDER */
.slider {
    overflow: visible;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

/* GROUP TITLE */
.group-title {
    margin-bottom: 10px;
    font-size: 16px;
}

/* TABLE */
.standing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.standing-table th {
    text-align: center; /* 🔥 ubah di sini */
    padding: 10px;
    background: #f5f5f5;
    font-size: 15px;
}

.standing-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

/* TEAM */
.team-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-cell img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* QUALIFIED */
.qualified {
    background: rgba(0,150,0,0.08);
}

/* NAV */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-nav button {
    padding: 6px 10px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}
.team-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

.team-link:hover {
    color: #e53935;
}
/* ===== GROUP SPACING ===== */
.standing-group{
    margin-bottom:40px; /* 🔥 JARAK ANTAR GROUP */
}

/* TITLE */
.group-title{
    font-size:18px;
    margin-bottom:12px;
}

/* TABLE */
.standing-table{
    width:100%;
    border-collapse:collapse;
    min-width:600px;
    font-size:14px;
    background:#fff;
    border-radius:10px;
}

.standing-table th{
    background:#f5f5f5;
    padding:10px;
    font-size:14px;
}

.standing-table td{
    padding:10px;
    border-bottom:1px solid #eee;
    text-align:center;
}

/* TEAM COLUMN */
.standing-table th:nth-child(2),
.standing-table td:nth-child(2){
    width:180px;
    text-align:left;
}

/* TEAM */
.team-cell{
    display:flex;
    align-items:center;
    gap:8px;
    overflow:hidden;
}

.team-cell img{
    width:24px;
    height:24px;
    border-radius:50%;
}

.team-cell a{
    text-decoration:none;
    color:#111;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.team-cell a:hover{
    color:#e53935;
}

/* QUALIFIED */
.qualified{
    background:rgba(0,150,0,0.08);
}

/* ===== TOP SECTION ===== */
.top-section{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.top-box{
    flex:1;
    background:#fff;
    padding:16px;
    border-radius:10px;
}

/* TITLE */
.top-box h3{
    font-size:14px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:6px;
}

.top-box h3 i{
    color:#e53935;
}

/* ITEM */
.top-item{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid #eee;
    font-size:13px;
}

/* LINK PLAYER */
.player-link{
    text-decoration:none;
    color:#111;
}

.player-link:hover{
    color:#e53935;
}

/* BADGE */
.top-item strong{
    background:#111;
    color:#fff;
    padding:3px 8px;
    border-radius:6px;
    font-size:13px;
}

/* MOBILE */
@media(max-width:768px){
    .top-section{
        flex-direction:column;
    }
}
/* ================= FOOTER STANDING ================= */
.standing-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:12px;
}

/* NAV */
.slider-nav{
    display:flex;
    gap:6px;
}

.slider-nav button{
    width:32px;
    height:32px;
    border:none;
    border-radius:8px;
    background:#252525;
    cursor:pointer;
    font-size:16px;
    transition:.2s;
}

.slider-nav button:hover{
    background:#111;
    color:#fff;
}

/* BUTTON ALL */
.btn-all{
    font-size:12px;
    font-weight:600;
    padding:7px 12px;
    border-radius:8px;
    background:#ff512f;
    color:#fff;
    text-decoration:none;
    transition:.25s;
}

.btn-all:hover{
    background:#111;
}
.table-wrap::-webkit-scrollbar {
    height: 6px;
}
.table-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.table-wrap{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.standing-table th:nth-child(2),
.standing-table td:nth-child(2){
    text-align: left;
}
/* ================= FIXTURE ROW ================= */
.sb-fixture{
    display:grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items:center;
    gap:8px;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

/* CLUB SIDE */
.club{
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
}

.club img{
    width:20px;
    height:20px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

/* 🔥 NAME 2 BARIS TANPA ... */
.club span{
    font-size:13px;
    line-height:1.25;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

/* RIGHT SIDE */
.club.right{
    justify-content:flex-end;
    text-align:right;
}

.club.right span{
    order:1;
}

.club.right img{
    order:2;
}

/* CENTER */
.middle{
    text-align:center;
    font-weight:700;
    font-size:13px;
}

.middle.score{
    background:#111;
    color:#fff;
    border-radius:6px;
    padding:4px 6px;
}
.mini-club{
    font-size:11px;
    opacity:.7;
    display:flex;
    align-items:center;
    gap:5px;
    margin-top:2px;
}

.mini-logo{
    width:14px;
    height:14px;
    object-fit:contain;
}