.reglamento {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.reglamento a {
    display: inline-block;
    font-weight: bolder;
    font-size: 23px;
    color: var(--clr);
    border-bottom: 2px solid var(--clr);
    transition: all 0.3s ease-in-out;
}

.reglamento a:hover {
    color: var(--extra);
    border-bottom: 2px solid var(--extra);
}

.live-container {
    margin-bottom: 1.5rem;
}

.live-title {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    font-weight: bolder;
}

.text {
    font-size: 20px;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.dot {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: red;
}

.dot::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: red;
    animation: animate ease-in 1.2s infinite;
    border-radius: 50%;
}

@keyframes animate {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 0;
        width: 50px;
        height: 50px;
    }
}

.live-matches-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.live-match {
    width: 600px;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.live-teams-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
}

.live-team {
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
}

.live-team2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 80px;
}

.live-team img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px 0 0 20px;
    background-color: var(--gradient2-color);
    padding: 10px;
    aspect-ratio: 1/1;
}

.live-team2 img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 0 20px 20px 0;
    background-color: var(--gradient3-color);
    padding: 10px;
    aspect-ratio: 1/1;
}

.live-team span {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: left;
    background-color: var(--gradient2-color);
    color: #fff;
    padding-left: 10px;
    width: 100%;
}

.live-team2 span {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: right;
    text-align: right;
    background-color: var(--gradient3-color);
    color: #fff;
    padding-right: 10px;
    width: 100%;
}

.live-versus {
    font-size: 20px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(122deg, var(--gradient2-color) 50%, var(--gradient3-color) 50%);
}

.live-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 440px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #ccc;
}

.live-link a {
    padding: 5px;
    width: 100%;
    height: 100%;
    color: red;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.live-link a:hover {
    background-color: red;
    color: #fff;
}

@media (max-width: 650px) {
    .live-match {
        width: 280px;
    }
    .live-teams-container {
        display: flex;
        flex-direction: column;
        border-radius: 20px;
    }
    .live-team {
        grid-template-columns: 60px 1fr;
    }
    .live-team2 {
        grid-template-columns: 1fr 60px;
    }
    .live-team img {
        width: 60px;
        height: 60px;
        padding: 3px;
        border-radius: 10px 0 0 0;
    }
    .live-team2 img {
        width: 60px;
        height: 60px;
        padding: 3px;
        border-radius: 0;
    }
    .live-team span {
        border-radius: 0 10px 0 0;
    }
    .live-versus {
        background: linear-gradient(180deg, var(--gradient2-color) 50%, var(--gradient3-color) 50%);
    }
    .live-link {
        width: 280px;
    }
}


/* MODAL */

.modal-content {
    background: linear-gradient(to right, #214683, #0066cc);
    padding: 17px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.modal-content h2 {
    color: var(--bg-color);
    text-transform: uppercase;
}

.btn-cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    color: white;
    background-color: white;
    cursor: pointer;
}

.info {
    margin-top: 20px;
}

.info .horaLugar {
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--bg-color);
}

.horaLugar .icon-calendar,
.horaLugar .icon-clock1,
.horaLugar .icon-location1 {
    margin-right: 1px;
}

.horaLugar div,
.sedeModal {
    color: var(--bg-color);
    text-decoration: none;
    margin: 0 1rem 0 1rem;
}

.sedeModal:hover {
    color: var(--bg2-color);
}

.partidoModal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border: 1px solid lightgray;
    padding: 1rem;
    background-color: var(--bg-color);
    border-radius: 5px;
}

.equipoModal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.equipoModal img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
}

.nombreEquipo {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.marcador {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.marcador2 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
}

.anotadores {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.anotador {
    color: var(--bg-color);
}

.anotador.local {
    width: 50%;
    justify-content: flex-start;
    border-right: 2px solid var(--extra);
    padding-right: 5px;
}

.anotador.visitante {
    width: 50%;
    justify-content: flex-end;
    padding-left: 5px;
}

.local .jug .jugador {
    text-align: left;
    margin-left: 1rem;
}

.visitante .jug .jugador {
    text-align: right;
    margin-right: 1rem;
}

.nombre {
    font-size: 12px;
    font-weight: bold;
}

.tiempo {
    font-size: 12px;
    margin-right: 2.5px;
    color: var(--bg2-color);
}

.score {
    margin: 1rem;
}


/* GRUPOS */

.grupos {
    width: 100%;
    margin-bottom: 3rem;
}


/* BRACKETS */

.keys {
    width: 100%;
}


/* GOLES */

.gols {
    width: 100%;
}


/* APARTADOS */

.ramas {
    padding: 20px;
    text-align: center;
    height: auto;
}

.nav__list {
    margin-bottom: 0;
}


/* ASDASDASDASDASDASDASDASDASDASDASDADASDASDASDASD */

.grupoItem {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid lightgray;
    margin-top: 1.5rem;
    max-width: 810px;
}

.contGpoContent {
    width: 100%;
    overflow-x: auto;
}

.grupoContent {
    padding: 1rem;
    width: 800px;
}

.grupoContent h2 {
    user-select: none;
    text-align: left;
    margin-right: 1rem;
}

.gpoTitulos {
    display: grid;
    grid-template-columns: 30px 300px minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr);
    grid-auto-columns: auto;
    grid-gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-weight: bold;
    user-select: none;
}

.gpoDatos {
    display: grid;
    grid-template-columns: 30px 300px minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr) minmax(40px, 1fr);
    grid-auto-columns: auto;
    grid-gap: 1rem;
    padding: 0.5rem 0;
    align-items: center;
    border-bottom: 1px solid lightgray;
    user-select: none;
}

.gpoDatos:hover {
    background-color: lightgray;
}

.gpoDatos .titgpo {
    font-size: 17px;
    font-weight: bold;
    text-align: left;
}

.gpoDatos .sig {
    border-left: 4px solid blue;
}

.gpoDatos .eli {
    border-left: 4px solid red;
}

.gpoDatos .titgpo img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    margin-right: 0.5rem;
}

.contPartidos {
    margin: 0 auto;
    background-color: #fff;
    max-width: 800px;
    padding: 1rem;
}

.contPartidos .togglediv .titPartidos {
    text-align: center;
    padding: 5px;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
}

.contPartidos .togglediv .titPartidos:hover {
    cursor: pointer;
    background-color: lightgray;
}

.titClasificacion {
    margin: 0 auto;
    background-color: #fff;
    max-width: 800px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.5rem;
}

.titClasificacion div {
    display: flex;
    align-items: center;
    user-select: none;
}

.titClasificacion .claBlue {
    display: inline-block;
    width: 15px;
    height: 24px;
    background-color: blue;
    border-radius: 2px;
    margin-right: 3px;
    user-select: none;
}

.titClasificacion .claRed {
    display: inline-block;
    width: 15px;
    height: 24px;
    background-color: red;
    border-radius: 2px;
    margin-right: 3px;
    user-select: none;
}

.divPartidos {
    background: linear-gradient(to right, #214683, #06c);
}

.divPartidos p {
    color: #fff;
}

.divTitulo {
    text-align: left;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.divTitulo .titRonda {
    font-size: 18px;
    font-weight: bold;
    color: var(--extra)
}

.divTitulo .fechaRonda {
    font-size: 16px;
    color: #fff;
}

.partidosRonda {
    padding: 0.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.partido {
    border: 1px solid lightgray;
    padding: 0.2rem;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.no_partido {
    font-weight: bold;
    background-color: #214683;
    color: #fff;
}

.filaEquipo {
    display: grid;
    grid-template-columns: 1fr 40px;
    margin: 0.5rem;
}

.filaEquipo .equipo {
    text-align: left;
}

.filaEquipo .scoreEquipo {
    text-align: center;
}

.filaEquipo .equipo img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    margin-right: 0.5rem;
}

.contFechaLugar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: center;
    gap: 1rem;
}

.lugarPartido .icon-location1::before,
.horaPartido .icon-clock1::before {
    margin-right: 3px;
    font-size: 14px;
    color: var(--gradient4-color);
}

.lugarPartido,
.horaPartido {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lugarPartido .txtLugar,
.horaPartido .txtHora {
    font-size: 14px;
    color: #333;
    font-family: "Inter", sans-serif;
    padding-bottom: 2px;
}


/* -------------------------------------------------------- */


/* -------------------------------------------------------- */


/* -------------------------------------------------------- */

.bracket {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1195px;
    margin: 0 auto;
    /* background-color: lightgray; */
    overflow: auto;
    margin-bottom: 2rem;
}

.bracket .title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.bracket .semifinales {
    margin-right: 70px;
}

.bracket .finales {
    margin-right: 70px;
    z-index: 2;
}

.bracket .finales .fin {
    position: relative;
}

.bracket .posFinales .pos {
    position: relative;
}

.bracket .semifinales .semi,
.bracket .finales .fin,
.bracket .posFinales .pos,
.bracket .posFinales .pos:nth-child(odd) {
    background: linear-gradient(to right, #214683, #0066cc);
    border-radius: 10px;
    color: var(--bg2-color);
}

.bracket .semifinales .semi {
    width: 350px;
    height: 140px;
    margin-bottom: 50px;
    display: grid;
    grid-template-areas: "num hl hl" "num team1 score1" "num team2 score2" "num det det";
    grid-template-columns: 40px 1fr 40px;
    grid-template-rows: 25px 35px 35px 45px;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

.bracket .semifinales .semi:nth-child(even)::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #000;
    right: -31px;
    top: 160px;
}

.bracket .semifinales .semi:nth-child(odd)::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 50px;
    background-color: #000;
    left: 180px;
    top: -50px;
}

.bracket .finales .fin:nth-child(odd)::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 191px;
    background-color: #000;
    left: -42px;
    top: -120px;
}

.bracket .finales .fin::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 2px;
    background-color: #000;
    left: -42px;
    top: 70px;
}

.bracket .posFinales .pos:nth-child(even)::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: #000;
    left: -32px;
    top: 30px;
}

.bracket .posFinales .pos:nth-child(even)::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #000;
    left: -82px;
    top: 70px;
}

.bracket .posFinales .pos:nth-child(odd)::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: #000;
    left: -32px;
    top: 30px;
}

.bracket .posFinales .pos:nth-child(odd)::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 80px;
    background-color: #000;
    left: -32px;
    top: -50px;
}

.bracket .finales .fin {
    width: 350px;
    height: 140px;
    margin-bottom: 50px;
    display: grid;
    grid-template-areas: "num hl hl" "num team1 score1" "num team2 score2" "num det det";
    grid-template-columns: 40px 1fr 40px;
    grid-template-rows: 25px 35px 35px 45px;
    padding: 10px;
    box-sizing: border-box;
}

.bracket .posFinales .pos {
    width: 350px;
    height: 60px;
    margin-bottom: 20px;
}

.bracket .posFinales .pos:nth-child(odd) {
    margin-bottom: 50px;
}

.noPartido {
    grid-area: num;
    background-color: var(--extra);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr);
    font-weight: 600;
    border-radius: 10px;
}

.sede {
    color: var(--bg2-color);
    position: relative;
    text-decoration: none;
}

.sede:hover {
    color: var(--extra);
}

.sede::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffcc00;
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: right;
}

.sede:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.horaLugar {
    grid-area: hl;
    font-size: 14px;
}

.detalles {
    grid-area: det;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 31px;
}

.team1,
.team2 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 35px;
}

.team img {
    margin-right: 10px;
    margin-left: 10px;
    height: 30px;
    width: 30px;
    aspect-ratio: 1/1;
}

.score1,
.score2 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--extra);
    height: 35px;
}

.btnDetalles {
    margin: 0;
    padding: 5px 10px;
    font-size: 14px;
}

.pos {
    display: grid;
    grid-template-columns: 40px 1fr;
}

.noPos {
    background-color: var(--extra);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: var(--clr);
    font-weight: 600;
}

.posTeam {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 20px;
}

.posTeam img {
    margin-right: 10px;
    margin-left: 10px;
    height: 45px;
    width: 45px;
    aspect-ratio: 1/1;
}

#detallesEntradas {
    margin-top: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
}

#detallesEntradas h3 {
    font-size: 18px;
    margin: 0;
    padding: 10px;
    background-color: var(--bg-color);
    color: #333;
    border-bottom: 1px solid lightgray;
    border-radius: 5px 5px 0 0;
}

.tablaEntradas {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.tablaEntradas th,
.tablaEntradas td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid lightgray;
}

.tablaEntradas th {
    background-color: var(--bg-color);
    color: #333;
}

.tablaEntradas .equipo {
    font-weight: bold;
}

.tablaContenedor {
    overflow-x: auto;
}


/* ESTADISTICAS */

.stats {
    width: 100%;
}


/* MENU STANDINGS */

.nav_stan {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.nav_stan ul {
    list-style-type: none;
    display: flex;
    padding: 1rem;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.nav_stan ul li {
    margin-right: 10px;
    position: relative;
    margin-bottom: 10px;
}

.nav_stan ul li a {
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 19px;
}

.nav_stan ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav_stan ul li a.active::after,
.nav_stan ul li a:hover::after {
    background-color: var(--gradient1-color);
}

.nav_stan ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--low-new-color);
    font-size: 18px;
    font-weight: bold;
}


/* STANDINGS */

.contcarreras,
.conthomeruns {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.standing {
    max-height: 400px;
    max-width: 800px;
    width: 800px;
    background-color: #5f74965c;
    border-radius: 10px;
    overflow: auto;
    padding: 1rem;
    transition: 0.3s;
    margin: 0 auto;
}

.stand {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 20px 10px 70px 1fr 50px;
    background-color: #fff;
    width: 100%;
    text-align: center;
    margin: 2px 0;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    padding: 5px 10px;
}

.stand:hover {
    background-color: var(--gradient4-color);
}

.stand:hover .posicion,
.stand:hover .nm {
    color: var(--bg-color);
    transition: 0.6s;
}

.player-img {
    height: 70px;
}

.player-img img:nth-child(1) {
    position: relative;
    height: 60px;
    width: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.player-img img:nth-child(2) {
    position: relative;
    bottom: 28px;
    right: -30px;
    background-color: #fff;
    padding: 0.2rem;
    border-radius: 20px;
    border: 1px solid black;
    aspect-ratio: 1/1;
}

.foto-jugador {
    width: 70px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.foto-jugador img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posicion {
    display: block;
}

.divisor {
    display: block;
}

.nm {
    display: block;
    text-align: left;
    margin-left: 20px;
}

.posicion,
.divisor {
    font-weight: 1000;
}

.divisor {
    color: var(--gradient1-color);
}

.goals {
    margin-left: auto;
}

.ln {
    font-weight: bold;
}

.carreras {
    background-color: #ededed;
    padding: 5px;
    border-radius: 10px;
    width: 50px;
}


/* MEDIA QUERYS */

@media (max-width: 1300px) {
    .bracket .semifinales .semi:nth-child(even)::after {
        width: 200px;
        right: -30px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
    .partidosRonda {
        grid-template-columns: 1fr;
    }
    .nav_stan ul {
        align-items: center;
    }
    .nav_stan ul li {
        margin-right: 0;
    }
    .nav_stan ul li a {
        font-size: 16px;
    }
}

@media (max-width: 530px) {
    .standing {
        padding: 5px;
    }
    .stand {
        gap: 0px;
        grid-template-columns: 20px 10px 45px 1fr 30px;
        font-size: 15px;
        padding: 5px 10px;
    }
    .player-img {
        height: 45px;
    }
    .player-img img:nth-child(1) {
        height: 45px;
    }
    .foto-jugador {
        width: auto;
    }
    .player-img img:nth-child(2) {
        bottom: 24px;
        right: -15px;
        width: 25px;
        height: 25px;
        margin-left: 1px;
    }
    .nm {
        margin-left: 10px;
    }
    .carreras {
        background-color: #ededed;
        padding: 5px;
        border-radius: 10px;
        width: auto;
    }
}

@media (max-width: 425px) {
    .filaEquipo .equipo img {
        height: 20px;
        width: 20px;
        aspect-ratio: 1/1;
    }
    .filaEquipo .equipo .equipoNombre {
        font-size: 14px;
    }
    .marcador2 {
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 17px;
        font-weight: bold;
    }
}

.contenedor-tablas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tabla-grupo {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.tabla-titulos {
    display: flex;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
}

.columna-pos {
    flex: 0 0 20%;
    text-align: center;
    padding: 5px;
}

.columna-logo {
    flex: 0 0 35%;
    text-align: center;
    padding: 5px;
}

.columna-nombre {
    flex: 0 0 45%;
    text-align: center;
    padding: 5px;
}

.tabla-datos {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

.tabla-datos:nth-child(even) {
    background-color: #f9f9f9;
}

.tabla-datos:hover {
    background-color: #f0f0f0;
}

.columna-logo img {
    display: block;
    margin: 0 auto;
}

.contenedor-tablas-partidos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tabla-partidos {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
}

.tabla-partidos .tabla-titulos {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    align-items: center;
    justify-items: center;
}

.tabla-partidos .columna-jornada,
.tabla-partidos .columna-equipo,
.tabla-partidos .columna-vs {
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.tabla-partidos .columna-vs {
    white-space: nowrap;
    font-size: 13px;
}

.tabla-partidos .tabla-datos {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    align-items: center;
    justify-items: center;
    font-size: 13px;
}

.tabla-partidos .tabla-datos:nth-child(even) {
    background-color: #f9f9f9;
}

.tabla-partidos .tabla-datos:hover {
    background-color: #f0f0f0;
}