/* Contraste de fundo */
body {
    background: #f4f6fa !important;
    color: #23272f !important;
}

/* Peso e tamanho da fonte (exceto inputs) */
body, label, th, td, .form-control, .form-label, .form-check-label {
    font-weight: 600 !important;
    font-size: 0.90em !important;
    color: #23272f !important;
}

/* Cabeçalhos de tabela */
th {
    background: #e1e5ee !important;
    border-bottom: 2px solid #99aab5 !important;
}

/* Linhas alternadas */
tr:nth-child(even) td {
    background: #eaf0fa !important;
}
tr:nth-child(odd) td {
    background: #f4f6fa !important;
}

/* Borda da tabela */
td, th {
    border: 1.5px solid #a5b1c2 !important;
    padding: 8px 12px !important;
}

/* Placeholder */
::placeholder {
    color: #7c8595 !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

/* Labels */
label, .form-label {
    font-weight: 700 !important;
    color: #23272f !important;
}

/* Altura mínima das linhas */
tr, td, th {
    min-height: 40px !important;
    height: 40px !important;
}

/* Select/Option */
select, option {
    font-weight: 600 !important;
    font-size: 1.08em !important;
    color: #23272f !important;
}

.secao-clicavel {
    border: 1px solid #d0d4da;
    border-radius: 6px;
    padding: 8px;
    transition: background-color 0.2s, box-shadow 0.2s;
}
.secao-clicavel:hover {
    background-color: #f0f4f8;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* SCROLL: Tabela com cabeçalho fixo e corpo rolável */
.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
}
.table-scroll {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table-scroll thead, .table-scroll tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.table-scroll tbody {
    display: block;
    max-height: 260px;
    overflow-y: auto;
}


.table-scroll thead,
.table-scroll tfoot,
.table-scroll tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table-scroll tbody {
    display: block;
    max-height: 250px; /* ajuste aqui a altura do scroll dos itens */
    overflow-y: auto;
}

.table-scroll tfoot {
    display: table;
    width: 100%;
    table-layout: fixed;
}


