@charset "UTF-8";

/* ROTAÇÃO */
#rotacao {
    display: flex;
    height: 80%;
    width: auto;
    justify-content: center;
    align-items: center; 
    flex-direction: column; 
    margin: 0;
    padding: 0;
    gap: 0;
}
#rotacao #mesa {
    height: 50%;
}
#rotacao div{
    gap: 0;
    display: flex;
    width: 100%;
    height: 25%;
    justify-content: space-around;
    align-items: center;
}
#rotacao div button {
    height: 75%;
    width: auto;
}
#rotacao div button img{
    height: 100%;
}

/* Valores */
#valores{
    flex-direction: column;
}
.linha{
    height: 50%;
}
.linha button{
    height: 80%;
}

/* Seleção de Folha Para Jogar */
#seleção_folha{
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px;
    color: #343a40;
    flex-direction: row;
    box-sizing: border-box;
}
#seleção_folha #imagem{
    width: 35%;
    height: auto;
    margin-right: 10px;
    border-radius: 8px;
    justify-content: center;
    border: 2px solid #6c757d;
}
#seleção_folha #imagem img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    
}
#seleção_folha #estatisticas_folha{
    width: 65%;
    height: 100%;
    padding: 10px;
    border-radius: 8px;
    flex-direction: column;
    box-sizing: border-box;
    border: 2px solid #6c757d;
}
#seleção_folha #estatisticas_folha h2 {
    width: 100%;
    height: 25%;
    display: flex;
    padding: 10px;
    font-size: 1.5em;
    color: #495057;
    align-items: center;
    margin-block-end: 0;
    margin-block-start: 0;
    border-bottom: 1px solid #dee2e6;
}
#seleção_folha #estatisticas_folha h2 span.ti{
    width: 20%;
}
#seleção_folha #estatisticas_folha h2 span.att{
    width: 80%;
    font-weight: bold;
    text-align: center;
}
#seleção_folha #estatisticas_folha #controle_botoes{
    height: 25%;
    flex-direction: row;
}
#seleção_folha #estatisticas_folha #controle_botoes button {
    height: 80%;
    font-size: 1em;
    color: #6c757d;
    border-radius: 5px; 
    border: 1px solid #dee2e6;
}

#placar{
    display: none;
    position: absolute;
    top: 15%;
    /*left:100% - 110px; inserir por js*/
    margin: 10px;
    width: 100px;
    height: 40px;
    flex-direction: row;
    align-items: center;
    background-color: white;
    color: #6c757d;
    border-radius: 5px; 
    border: 1px solid #dee2e6;
}
#placar h3{
    width: 33%;
    text-align: center;
}
#placar h3#pontuacao_azul{
    color:#6c75ff;
}
#placar h3#pontuacao_vermelho{
    color:#ff757d;
}

