
/* ╭────────────────────────────────────────────────────────────────────────────╮
   │ 🎨 CSS – Dashboard de Despesas Fixas – CONSART ERP                        │
   ╰────────────────────────────────────────────────────────────────────────────╯ */

/* Reset e base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

/* Container central */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Título */
h1 {
  text-align: center;
  color: #0066cc;
  margin-bottom: 30px;
}

/* Filtros */
.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}
.filtros label {
  font-weight: bold;
}
.filtros select,
.filtros input,
.filtros button {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.filtros button {
  background-color: #007bff;
  color: white;
  cursor: pointer;
}
.filtros button:hover {
  background-color: #0056b3;
}

/* Indicadores */
.indicadores {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.card-indicador {
  background-color: #eaf4fc;
  color: #004a99;
  padding: 20px;
  border-radius: 10px;
  min-width: 220px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Gráfico */
canvas#graficoDespesas {
  max-width: 100%;
}
