.jlb-standing{

    width:100%;
    direction:rtl;
    border:none;

}

.jlb-standing-card{

    background:var(--jlb-st-card-bg);
    border:1px solid var(--jlb-st-border-color);
    border-radius:12px;
    overflow:hidden;

}

.jlb-standing-header{

    background:var(--jlb-st-header-bg);
    color:var(--jlb-st-header-color);

    padding:14px 18px;

    text-align:center;

    font-size:18px;
    font-weight:700;

}

.jlb-standing-content{

    padding:16px;

}

.jlb-standing-select-wrap{

    display:flex;
    justify-content:center;

    margin-bottom:16px;

}

.jlb-standing-select{

    width:100%;
    max-width:320px;

    height:42px;

    padding:0 12px;

    border:1px solid var(--jlb-st-border-color);
    border-radius:8px;

    background:#fff;

    outline:none;
    cursor:pointer;

}

.jlb-standing-title{

    margin:0 0 16px;

    text-align:center;

    font-size:18px;
    font-weight:700;

    color:var(--jlb-st-title-color);

}

/* ===================================
   Table
=================================== */

.jlb-standing-table-wrap{

    position:relative;

    overflow-x:auto;

}

.jlb-standing-table{

    width:100%;
    min-width:850px;

    border-collapse:separate;
    border-spacing:0;

}

.jlb-standing-table thead th{

    background:var(--jlb-st-header-bg);
    color:var(--jlb-st-header-color);

    white-space:nowrap;

}

.jlb-standing-table th,
.jlb-standing-table td{

    padding:12px;

    border-bottom:1px solid var(--jlb-st-border-color);

    text-align:center;
    vertical-align:middle;

}

.jlb-standing-table tbody tr{

    transition:.2s;

}

.jlb-standing-table tbody tr:nth-child(odd){

    background:var(--jlb-st-row-odd);

}

.jlb-standing-table tbody tr:nth-child(even){

    background:var(--jlb-st-row-even);

}

.jlb-standing-table tbody tr:hover{

    background:var(--jlb-st-hover-color);

}

.jlb-standing-table tbody tr:last-child td{

    border-bottom:none;

}

/* ===================================
   Team
=================================== */

.jlb-standing-team{

    display:flex;

    align-items:center;

    gap:10px;

    text-align:right;

}

.jlb-standing-team-color{

    width:4px;

    min-width:4px;

    height:18px;

    border-radius:20px;

    background:var(--jlb-row-color);

}

.jlb-standing-team-name{

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

/* ===================================
   Logo
=================================== */

.jlb-standing-team-logo{

    width:22px;

    height:22px;

    min-width:22px;

    object-fit:contain;

    border-radius:4px;

    flex:none;

}

/* ===================================
   Rules
=================================== */

.jlb-standing-rules{

    margin-top:18px;

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.jlb-standing-rule{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 12px;

    border:1px solid var(--jlb-st-border-color);

    border-radius:8px;

    background:#fff;

}

.jlb-standing-rule-color{

    width:14px;

    height:14px;

    border-radius:50%;

    flex:none;

}

.jlb-standing-rule-title{

    font-size:14px;

}

/* ===================================
   Footnotes
=================================== */

.jlb-standing-footnotes{

    margin-top:18px;

    display:flex;

    flex-direction:column;

    gap:8px;

}

.jlb-standing-footnote{

    padding:10px 12px;

    border-right:3px solid var(--jlb-st-header-bg);

    background:#f8fafc;

    border-radius:6px;

    font-size:13px;

    line-height:1.8;

}

/* ===================================
   Responsive
=================================== */

@media (max-width:768px){

    .jlb-standing-content{

        padding:10px;

    }

    .jlb-standing-header{

        font-size:16px;

    }

    .jlb-standing-title{

        font-size:16px;

    }

    .jlb-standing-table{

        min-width:760px;

    }

    .jlb-standing-table th,
    .jlb-standing-table td{

        padding:8px;

        font-size:13px;

    }

    .jlb-standing-rule{

        width:100%;

    }

}