/* Estilos específicos do Dashboard MABEL */
/* O estilo comum está em estilo-comum.css */

/* Ajustes específicos se necessário */
main {
  margin: 30px auto;
  max-width: 1400px;
  padding: 0 30px;
}

.filtro {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.filtro label {
  font-weight: bold;
}

.graficos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.grafico-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  height: 380px;
}

.grafico-container canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Atalhos de navegação para páginas de gráficos */
.atalhos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px 0 10px 0;
}

.atalho-btn {
  display: inline-block;
  text-align: center;
  padding: 14px 16px;
  background: #8B4513;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.1s ease, background-color 0.2s ease;
}

.atalho-btn:hover {
  background: #A0522D;
  transform: translateY(-2px);
}
