/* ============================================================
   Refinos globais de UI/UX (propagam para todas as telas).
   Conservador de proposito: so ajustes visuais, sem quebrar layout.
   ============================================================ */

/* Cards um pouco mais suaves */
.card {
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

/* Cabecalho de listagem (thead) discreto e legivel */
.table > thead th {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #6b7280;
    font-weight: 600;
}

/* Hover suave nas linhas */
.table-hover > tbody > tr:hover {
    background-color: rgba(13, 110, 253, .05);
}

/* Botoes de acao em tabela: cantos arredondados + icone alinhado */
td .btn-sm,
th .btn-sm {
    border-radius: 50rem;
    padding-left: .75rem;
    padding-right: .75rem;
}

.btn i.bx {
    vertical-align: middle;
    line-height: 1;
}

/* Busca do DataTables mais arredondada */
.dataTables_wrapper .dataTables_filter input {
    border-radius: 50rem;
    padding: .25rem .85rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border-radius: .35rem;
}
