#pergunta_div{
    user-select: none;
}


#pergunta_div .container-divisao-meio{
    flex-direction: column;
}

.div_divisora{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.div_divisora > h3{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
#containerPerguntasAlternativas{
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#pergunta_div .texto-Header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#containerPerguntasAlternativas .espaco-texto{
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 80%;
    overflow-y: auto;
}


#containerPerguntasAlternativas .espaco-texto h4{
    height: 100%;
    width: 100%;
    text-align: left;
}

#containerPerguntasAlternativas .espaco-texto > *{
    margin: 0;
}


#containerPerguntasAlternativas .espacoAlternativa{
    max-height: 100% !important;
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--azul_escuro);
    border: none!important;
    
}

.alternativas{
    width: 95%;
    max-width: 95%;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    scrollbar-width: thin;  /* Ajuste para 'auto' ou 'thin' */
    scrollbar-color: darkgray #f1f1f1;  /* Cor do "polegar" e do fundo */
}


.alternativas::-webkit-scrollbar {
    width: 12px;  /* Ajuste o tamanho da barra de rolagem */
  }
  
  .alternativas::-webkit-scrollbar-thumb {
    background-color: darkgray;  /* Cor do "polegar" (parte que o usuário clica para rolar) */
    border-radius: 10px;
  }
  
  .alternativas::-webkit-scrollbar-track {
    background: #f1f1f1;  /* Cor do fundo da área da barra de rolagem */
  }


.background-image-textura{
    background-image: url('../../../Assets/Utils/paperTexture.webp');
    background-position: center;
    background-size: cover;
}

.espacoAlternativa .alternativa{
    width: 95%;
    padding: 1rem;


    transition: opacity 1s ease;
}


.espacoAlternativa .alternativa > *{
    margin: 0;
    text-align: left;
}


.espacoAlternativa .alternativa:hover{
    cursor: pointer;
    opacity: 1;
}