.acta-body {
    display: flex;
    flex-direction: column;
    gap: 13px;

    &>.acta-content {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        background: #FFF;
        padding: 21px;
        max-width: 100%;

        &>.titulo {
            &>h2 {
                margin: 24px 0
            }
        }

        &>.alineacion {
            display: flex;
            flex-direction: row;
            gap: 23px;
            justify-content: space-between;

            &>div {
                width: 100%;
            }
        }
    }
}



.table-equipos {
    border-radius: 15px;
    overflow: hidden;

    &>thead {
        &>tr {
            &>th {
                border: none;
                padding: 0 5px !important;

                &>div {
                    min-height: 54px;
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    font-family: Syne;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 18px;
                    /* 128.571% */
                    letter-spacing: -0.084px;
                    text-transform: uppercase;
                }

                &>.centrado {
                    justify-content: center;
                }
            }
        }
    }

    &>tbody {

        &>tr {
            &>th {
                background-color: var(--componet-primary-color);
                color: var(--componet-primary-color-text);
            }
            &>.danger.centrado{
                background-color: var(--componet-tertiary-color);
                &>strong{
                   color: var(--componet-tertiary-color-text); 
                }
            }
            &>.danger:hover.centrado:hover{
                background-color: var(--componet-tertiary-color);
                &>strong{
                   color: var(--componet-tertiary-color-text); 
                }
            }

            &>td {
                &>.nombre-jugador {
                    color: #050505;

                    font-family: "DM Sans";
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 20px;
                    /* 142.857% */
                    letter-spacing: -0.028px;
                }

                &>div {
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    font-family: Syne;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 18px;
                    /* 128.571% */
                    letter-spacing: -0.084px;
                    text-transform: uppercase;
                    gap:12px;
                }

                &>.custom-col {
                    justify-content: center;
                    align-items: center;
                }

            }
        }
    }
}

.image-content {
    min-width: 38px;
    min-height: 38px;

    height: 38px;
    width: 38px;
    border-radius: 100px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;

    &>img {
        max-width: 31px;
        min-height: 31px;
    }

    &>.foto_jugador_acta {
        max-width: 38px;
        max-height: 38px;
        height: 38px;
        width: 38px;
    }
}