    /* ----------------------------
     ESTILOS GENERALES
  ---------------------------- */
    body {
        margin: 0;
        padding: 0;
        font-family: "Syne", sans-serif;
        background: #eee;
        color: #333;
    }

    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 !important;
        background: #fff;

        &>.titulo {
            margin-left: 10%;
        }
    }
/* Para navegadores WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 4px; /* Grosor del scroll lateral */
    height: 4px; /* Grosor del scroll horizontal */

}

::-webkit-scrollbar-track {
    background: #f0f0f0; /* Color del fondo del scrollbar */
    border-radius: 10px; /* Bordes redondeados */
}

::-webkit-scrollbar-thumb {
    background: #002041; /* Color del scroll */
    border-radius: 10px; /* Bordes redondeados */
}

::-webkit-scrollbar-thumb:hover {
    background: #002041; /* Color del scroll cuando pasas el mouse */
}

/* Para Firefox */
* {
    scrollbar-width: thin; /* Hace el scroll más fino */
    scrollbar-color: #002041 #f0f0f0; /* Color del thumb y del track */
}

    .content {
        background-image: url(../images/imagen_fondo.png);
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 !important;
        padding: 20px 0 0 0 !important;
        border-radius: 0 !important;
        min-height: 606px;
    }

    .content-cabecera {
        display: flex;
        justify-content: space-between;
        /* Distribuye los elementos */
        align-items: center;
        /* Alinea verticalmente en el centro */
        width: 100%;
        /* Ocupa todo el ancho */
        padding: 10px;

        &>.tabs {
            margin: 0 auto;
        }

    }

    h1 {
        margin-bottom: 1rem;
        font-family: "Syne", sans-serif;
    }

    /* ----------------------------
 ESTILOS DE LAS PESTAÑAS
---------------------------- */
    .tabs {
        display: flex;
        gap: 1rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1rem;
        width: max-content;
        padding: 10px;
        border-radius: 27px;
        background-color: #f5f5f5;
    }

    .tab {
        padding: 0.5rem 1rem;
        cursor: pointer;
        border: none;
        background-color: transparent;
        font-weight: bold;
        color: #555;
    }

    .tab.active {
        border-bottom: 3px solid #000;
        color: #000;
        background-color: white;
        margin: -5px;
        border-radius: 19px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    }

    /* ----------------------------
 CONTENEDORES DE PESTAÑAS
---------------------------- */
    .tab-content {
        display: none;
        /* Por defecto oculto */
        padding: 1rem 0;
    }

    .tab-content.active {
        display: block;

        /* Solo la pestaña activa se muestra */
    }

    /* ----------------------------
 ESTILOS DE RESULTADOS
---------------------------- */
    .results-container {
        display: flex;
        flex-wrap: wrap;
        /* Para que se adapte en pantallas pequeñas */
        gap: 1rem;
        justify-content: space-evenly;
        padding: 25px;
    }

    /* Tarjetas de resultados */
    .card {
        min-width: 260px;
        /* Un tamaño mínimo para que no encojan demasiado */
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 18px;
        padding: 10px 20px 20px 20px;
        max-width: 400px;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 5px;

        &>.card-img {
            min-width: 51px;
            min-height: 51px;
            display: flex;
            border-radius: 36px;
            background-color: white;
            justify-content: center;
            align-content: center;
            align-items: center;


        }

        &>.card-footer {
            &>a {
                color: #eb1126;
                font-size: 24px;
                text-decoration: underline;
                font-family: "Syne", sans-serif;
                font-style: normal;
                font-weight: 500;
            }
        }
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 8px;
        right: 6px;
        width: 20px;
    }

    .img-content>img {
        width: 50px;
        min-width: 50px;
        min-height: 50px;
        display: block;
        border-radius: 36px;
    }

    .card-competicion {
        &>h2 {
            font-family: "Syne", sans-serif;
            font-size: 22px;
            font-style: normal;
            font-weight: 700;
            text-align: center;
        }
    }

    .content-select {
        display: flex;
        align-items: center;

        &>div:first-child {
            border: 0px !important;
            padding: 9px !important;
            height: 100%;
            border-radius: 100px;
            background-color: #fff;
            color: #444;
            line-height: 28px;

            &>a {
                text-decoration: none;
                color: inherit;
            }
        }
    }

    .team-name {

        &>p {
            font-weight: bold;
            font-size: 12px;
            text-align: center;
        }
    }

    .resultados {
        &>h3 {
            color: #eb1126;
            font-family: "Syne", sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
        }
    }

    .vs {
        &>h3 {
            color: white !important;
            -webkit-text-stroke: 0.6px black !important;
            font-weight: bold !important;
        }

    }



    .card-body h5 {
        margin: 0 0 0.25rem 0;
        font-size: 1rem;
        font-weight: normal;
    }

    .score {
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        margin-top: 0.5rem;
    }

    /* ----------------------------
 ESTILOS DE TABLA DE CLASIFICACIÓN
---------------------------- */

    .card-table {
        flex-grow: 1;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        height: 445px;

        &>.card-header {

            /* Verde o el color que desees */
            padding: 5px 0 5px 0.75rem;
            font-weight: bold;
            border-bottom: 1px solid #ccc;
            flex-grow: 1;
            width: 100%;
            height: 125px;
            display: flex;
            align-items: center;

            &>div {
                display: flex;
                align-items: center;
                gap: 15px;

                &>img {
                    width: 50px;
                    min-width: 50px;
                    min-height: 50px;
                    display: block;
                    border-radius: 36px;
                }

                &>p {
                    margin: 0 !important;
                }
            }
        }

        &>.card-body {
            width: 100%;
            overflow-y: scroll;
        }
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 !important;
        border-radius: 0 23px;
    }

    thead {
        background-color: #f3f3f3;
    }

    th,
    td {
        border: none !important;
        padding: 0.5rem;
        text-align: left;
    }

    .nombre-clasi {
        display: flex;
        justify-content: start;
        gap: 20px;
        align-items: center;
    }

    .div_select_competicion_u {
        border-radius: 50px;
        margin-left: 8px;
        margin-right: 16px;

        &>.select2-container>.selection>.select2-selection--single {
            border-radius: 100px;
        }
    }

    .div1 {
        grid-area: 1 / 1 / 2 / 4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        &>p {
            max-width: max-content;
            margin: 0;
        }

        &>p:first-child {
            font-size: 22px;
            font-family: 'Syne';
            font-weight: 700;
        }

        &>p:last-child {
            font-size: 17px;
            font-family: 'Syne';
            font-weight: 400;
        }
    }

    .div2 {
        grid-area: 2 / 1 / 3 / 4;

        &>p {
            font-size: 15px;
            font-family: 'Syne';
            font-weight: 700;
            max-width: max-content;
            margin: 0;
        }
    }

    .div3 {
        grid-area: 3 / 1 / 4 / 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div4 {
        grid-area: 3 / 2 / 4 / 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div5 {
        grid-area: 3 / 3 / 4 / 4;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div6 {
        grid-area: 4 / 1 / 5 / 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div7 {
        grid-area: 4 / 2 / 5 / 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div8 {
        grid-area: 4 / 3 / 5 / 4;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div9 {
        grid-area: 5 / 2 / 6 / 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .table {
        &>thead {
            background-color: #002041;
            color: white;
        }
    }

    @media (max-width: 1606px) {
        .content {
            min-height: 1061px;
        }
    }