/* ╔══════════════════════════════════════════════════════════════╗ */
/* ║ 🎨 relatorio_caixa.css – Estilos do Relatório de Caixa      ║ */
/* ╚══════════════════════════════════════════════════════════════╝ */

body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
}

h1 {
  font-weight: 600;
}

label {
  font-weight: 500;
}

input::placeholder,
select {
  font-size: 0.95rem;
}

/* Botões de ação */
#formFiltros button {
  min-width: 110px;
}

#formFiltros .btn {
  font-weight: 500;
}

/* Tabela de Dados */
table.dataTable thead th {
  background-color: #198754;
  color: white;
  font-size: 0.95rem;
  text-align: center;
}

table.dataTable tbody td {
  font-size: 0.9rem;
  vertical-align: middle;
  text-align: center;
}

#tabelaCaixa_wrapper .dataTables_filter input {
  border-radius: 4px;
}

/* Total */
#totalCaixa {
  font-weight: bold;
  font-size: 1.2rem;
  color: #198754;
}

/* Gráfico */
#graficoCaixa {
  max-height: 400px;
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
  #formFiltros .row > div {
    margin-bottom: 10px;
  }
}
