/************************
CSS 2003-2026 EXCLUSIVO PARA BENGALESES.COM
Todos los Derechos Reservados 
Realiza: Ángel Matos para Bengaleses.com*/


        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

        #lidom-standings-root {
            max-width: 100%;
            margin: 0 auto;
            font-family: 'Inter', sans-serif;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            position: relative;
        }

        .lidom-nav-menu {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 5px;
        }

        .lidom-nav-link {
            flex: 1;
            max-width: 160px;
            text-align: center;
            padding: 10px 5px;
            background: #ffffff;
            color: #132a77;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            border-radius: 20px;
            border: 1px solid #ddd;
            transition: all 0.2s ease-in-out;
            text-transform: uppercase;
        }

        .lidom-nav-link:hover {
            background: #3d7dcb;
            color: #ffffff;
            border-color: #3d7dcb;
            transform: translateY(-2px);
        }

        .lidom-nav-link.is-active {
            background: #132a77;
            color: #ffffff;
            border-color: #132a77;
        }

        .lidom-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            padding: 0 5px;
        }

        .lidom-title {
            font-size: 1.5rem; 
            font-weight: 900;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -1.2px;
        }
        .title-lidom { color: #041e42; }
        .title-standings { color: #3d7dcb; }

        .season-nav-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-btn-circle {
            background: #3d7dcb; color: white; font-size: 18px; border: none;
            width: 35px; height: 35px; border-radius: 50%; cursor: pointer;
            font-weight: bold; transition: all 0.2s ease; display: flex;
            align-items: center; justify-content: center; flex-shrink: 0;
        }
        .nav-btn-circle:hover { background: #041e42; transform: scale(1.1); }

        .season-display-box {
            padding: 8px 16px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #ddd;
            font-weight: 700;
            color: #041e42;
            font-size: 1rem;
            min-width: 180px;
            text-align: center;
        }

        .lidom-stage-tabs {
            display: flex;
            justify-content: flex-start;
            gap: 8px;
            margin-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 8px;
            overflow-x: auto;
        }

        .stage-tab-btn {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #cbd5e1;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .stage-tab-btn:hover {
            background: #e2e8f0;
            color: #041e42;
        }

        .stage-tab-btn.active {
            background: #132a77;
            color: #ffffff;
            border-color: #041e42;
        }

        .standing-container {
            background: #fff;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 650px;
        }

        th {
            background: #f1f5f9;
            color: #475569;
            font-size: 11.5px;
            font-weight: 900;
            padding: 9px 10px;
            text-transform: uppercase;
            border-bottom: 2px solid #e2e8f0;
            white-space: nowrap;
        }

        td {
            padding: 8px 10px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 13px;
            color: #1e293b;
            white-space: nowrap;
        }

        tr:hover {
            background-color: #f8fafc;
        }

        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
        }

        .t-logo-wrapper { 
            width: 28px; 
            height: 28px; 
            background: #fff; 
            border: 1px solid #cfd5db; 
            border-radius: 15%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            flex-shrink: 0; 
        }

        .t-logo { width: 22px; height: 22px; object-fit: contain; }

        .text-center { text-align: center; }
        .text-bold { font-weight: 900; color: #041e42; }
        .pct-col { font-weight: 600; color: #041e42;  }
        .dif-col { font-weight: 800; color: #3d7dcb; }
        .detail-col { color: #313b4b; }
		.jj-col { font-weight: 900; color: #64748b; }   /* Estilo exclusivo para JJ */
        .wins-col { font-weight: 600; color: #041e42; } /* Estilo exclusivo para G */
		.losses-col { font-weight: 600; color: #041e42; } /* Estilo exclusivo para P */

        .streak-col {
            font-weight: 400;
            color: #475569;
        }

        .section-subhead {
            font-size: 1.1rem;
            font-weight: 900;
            color: #041e42;
            margin: 20px 0 10px 5px;
            text-transform: uppercase;
        }

        .vs-cell-self {
            background-color: #e2e8f0;
            font-weight: bold;
        }

        @media (max-width: 650px) {
            .lidom-header-bar { 
                flex-direction: column; 
                align-items: center; 
                gap: 12px; 
            }
            .season-nav-group { 
                width: 100%; 
                justify-content: center; 
            }
            .hide-xs { display: none; }
            .lidom-nav-link { font-size: 11px; padding: 8px 2px; }
            td, th { padding: 6px 8px; }
            .lidom-stage-tabs { justify-content: center; }
        }
