/* ─── Liga tabs — chips de navegación ────────────────────────────────────────── */
.LEW_LeagueTabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.LEW_LeagueTab {
    display: inline-block;
    padding: 9px 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #3d4a6b;
    border-radius: 10px;
    background: #e4e8f2;
    border: 2px solid #c8cfdf;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.LEW_LeagueTab:hover {
    background: #e2e6ef;
    color: #1a2035;
}

.LEW_LeagueTabs--dhm .LEW_LeagueTab--active {
    background: #103865;
    color: #fff;
    font-weight: 700;
    border-color: #7bb8f0;
    box-shadow: 0 3px 10px rgba(16,56,101,.25);
}
.LEW_LeagueTabs--dhf .LEW_LeagueTab--active {
    background: #2B78C1;
    color: #fff;
    font-weight: 700;
    border-color: #a8d4ff;
    box-shadow: 0 3px 10px rgba(43,120,193,.25);
}

/* ─── Round pills — wrapper ───────────────────────────────────────────────────── */
.LEW_RoundGridWrapper {
    display: block;
    width: 100%;
}

/* Fuerza ancho completo en el widget shortcode que contiene el selector */
.elementor-widget-shortcode:has(.LEW_RoundGridWrapper),
.elementor-widget-shortcode:has(.LEW_RoundGridWrapper) > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
}

.LEW_RoundGrid_Arrow { display: none; }

/* ─── Round pills — selector de jornada ─────────────────────────────────────── */
.LEW_RoundGrid {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    padding: 4px 0;
    margin: 0;
    width: 100%;
    text-align: center;
}
.LEW_RoundGrid::-webkit-scrollbar { height: 4px; }
.LEW_RoundGrid::-webkit-scrollbar-track { background: transparent; }
.LEW_RoundGrid::-webkit-scrollbar-thumb { background: #c8cfdf; border-radius: 2px; }

.LEW_RoundPill {
    display: inline-block;
    min-width: 2.4em;
    text-align: center;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
    margin: 0 3px;
    color: #3d4a6b;
    background: #e4e8f2;
    border: 2px solid #c8cfdf;
    transition: background .12s ease, color .12s ease, box-shadow .12s ease;
    line-height: 1.4;
    user-select: none;
}
.LEW_RoundPill:hover {
    color: #1a2035;
    background: #e2e6ef;
}

.LEW_RoundGrid--dhm .LEW_RoundPill--selected {
    background: #103865;
    color: #fff;
    border-color: #7bb8f0;
    box-shadow: 0 3px 10px rgba(16,56,101,.30);
}
.LEW_RoundGrid--dhf .LEW_RoundPill--selected {
    background: #2B78C1;
    color: #fff;
    border-color: #a8d4ff;
    box-shadow: 0 3px 10px rgba(43,120,193,.30);
}

/* ─── Responsive ──────────────────────────────────────────────────────────────── */
@media only screen and (max-width: 768px) {
    .LEW_LeagueTab  { font-size: 13px; padding: 7px 14px; }
    .LEW_RoundPill  { font-size: 12px; padding: 5px 8px; min-width: 2em; }
}
