html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.cabecalho {
    text-align: center;
    justify-content: center;
    color: white;
    background-color: #08ac4c;
}
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.layout_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    gap: 1px;
}

.layout_2 {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    grid-template-rows: 1fr;
    padding: 1px;
    gap: 1px;
}

    .layout_2 .item_direita {
        text-align: right; /* alinha o texto interno ao centro */
        padding: 1px;
        color: green;
        font-weight: bold;
        font-size: 36px;
    }

    .layout_2 .item_esquerda {
        text-align: left; /* alinha o texto interno ao centro */
        padding: 1px;
        color: green;
        font-weight: bold;
        font-size: 36px;
    }

    .layout_2 .item_centro {
        text-align: center; /* alinha o texto interno ao centro */
        padding: 1px;
        color: black;
        font-weight: bold;
    }

    .layout_2 .item_direita_c {
        text-align: left; /* alinha o texto interno ao centro */
        padding: 1px;
        color: green;
        //font-size: 24px;
    }

    .layout_2 .item_esquerda_c {
        text-align: right; /* alinha o texto interno ao centro */
        padding: 1px;
        color: green;
        //font-size: 24px;
    }
    .layout_2 .item_direita_dc {
        text-align: right; /* alinha o texto interno ao centro */
        padding: 1px;
        color: dimgray;
        font-weight: bold;
        font-size: 36px;
    }

    .layout_2 .item_esquerda_dc {
        text-align: left; /* alinha o texto interno ao centro */
        padding: 1px;
        color: dimgray;
        font-weight: bold;
        font-size: 36px;
    }

a {
    text-decoration: none;
}

button {
    background-color: Transparent;
    border: none; /* Your can add different style/properties of button Here*/
    cursor: pointer;
    width: auto;
    height: auto;
}
.container1 {
    width: 95%;
    height: 150px;
    margin: 20px auto;
    /*border: 1px solid #333;*/
    display: flex;
    flex-direction: column;
    position: relative;
}

.top {
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bottom {
    height: 44%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.rod {
    height: 41%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2px;
}

.left, .right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    margin-bottom: 2px;
    padding: 0;
}    

.rodape {
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 20px;
    background-color: #c3f584;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid #555;
    z-index: 1;
    border-radius: 10px;
}

.imagem-redonda {
    width: 30px; /* Ou o tamanho desejado */
    height: 30px; /* Mesma altura que a largura */
    border-radius: 50%; /* Arredonda para um círculo */
    object-fit: cover; /* Preenche o espaço sem distorção */
}
.imagem-partida {
    width: 60px; /* Ou o tamanho desejado */
    height: 60px; /* Mesma altura que a largura */
}
p {
    //font-size: 13px;
}
.left-texto {
    text-align: center;
    padding: 0;
    font-size: 13px;
    /**order: 1px dashed red;*/
}

.left-imagens {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    /*border: 1px dashed red;*/
}