﻿
.curso-historico-pergunta-alternativas-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

/* Métricas sempre à direita */
.curso-historico-pergunta-metricas {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

/* Alternativa */
.curso-historico-alternativa-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

/* Barra proporcional */
.curso-historico-alternativa-barra {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0.3;
    transition: width 0.3s ease;
}

.curso-historico-alternativa-barra.correta {
    background-color: #4caf50;
}

.curso-historico-alternativa-barra.errada {
    background-color: #f44336;
}

.curso-historico-alternativa-barra.neutra {
    background-color: #fff;
}

/* Conteúdo */
.curso-historico-alternativa-conteudo {
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.curso-historico-alternativa-texto {
    flex: 1;
}

.curso-historico-alternativa-metrica {
    white-space: nowrap;
    font-size: 0.9rem;
    color: #555;
}
