﻿.atividade-container {
    background-color: none;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--marginTop);
}

.atividade-pergunta {
    font-weight: bold;
    font-size: 18px;
    color: white;
    background-color: #030617;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.atividade-alternativa {
    color: #030617;
    background-color: #D9D9D9;
    border-radius: 20px;
    padding: 12px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-clip: padding-box;
}

.atividade-alternativa:hover {
    background-color: #b3e5fc;
}

.atividade-alternativa.selecionada {
     background-color: var(--backgroundAlternativaSelecionada);
     color: white;
     font-weight: bold;
}

.atividade-alternativa label {
    background: none; /* Remove qualquer fundo */
    color: inherit; /* Garante que a cor do texto seja herdada do contêiner */
    font-weight: inherit; /* Garante que o peso da fonte seja o mesmo */
}
