/* CSS dedicado a Tabelas nos forms*/

table.meusfrm-tabela {
    width: 100%;
    font-size: 0.85rem;
    --nv-text-color: none; /* anula riscos grossos na separação das linhas da tabela */
}

/* bordas da tabela */
table.meusfrm-tabela tbody td {
    border: 1px solid #eee;
    border-radius: 0.5rem;
}

/* Texto das linhas da tabela */
.meusfrm tbody td {
    line-height: 1rem;
    font-size: 0.7rem;
    text-align: center;
}
/* Cores de fundo das linhas da tabela */
.meusfrm tbody tr:nth-child(odd) {
    background-color: #fdfdfd;
}
.meusfrm tbody tr:nth-child(even) {
    background-color: #e6f2ff;
}

/* Linha selecionada */
.meusfrm tr.row-selected {
    background-color: #ffe9b3 !important;
    transition: background-color 0.2s ease;
}

/* Ajustes específicos para a tabela de referências em campanhas */
.tabela-form th,
.tabela-form td {
    padding: 3px 6px !important;
    line-height: 1.8rem !important;
    height: auto !important;
}
.tabela-form thead th {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 4px 8px !important;
    text-align: center !important;
}

/* Linhas de referências da campanha não qualificadas */
tr.linha-nao-qualificada td {
    color: #dc3545 !important; /* vermelho */
}
