/* Fundo leve e altura total da página */
.page-wrap { background: #f7f9fc; min-height: 100vh; }

/* Cards KPI */
.soft-card {
  border: 1px solid #e9eef5;
  box-shadow: 0 2px 10px rgba(10, 31, 68, 0.06);
  border-radius: 12px;
}

/* Espaço/stack das tabs e proteção de z-index contra tooltips/hover dos gráficos */
.tabs-wrap { margin-top: 12px; position: relative; z-index: 1; }
.tabs-wrap::before {
  content: "";
  display: block;
  height: 1px;
  background: #e9eef5;
  margin-bottom: 10px;
  opacity: .8;
}

/* Tabs estilo "pills" */
.pro-tabs .nav-link {
  border-radius: 999px !important;
  margin-right: 6px;
  padding: 6px 14px;
  color: #334;
  background: #eef3f9;
  border: none !important;
}
.pro-tabs .nav-link.active {
  background: #2b6cb0;
  color: #fff !important;
  box-shadow: 0 1px 6px rgba(43,108,176,.3);
}

/* Utilitários flex */
.flex-1 { flex: 1 1 auto; }
.min-h-0 { min-height: 0; }

/* Garantir altura total até o núcleo do AG Grid */
#tabs-content,
#tabs-content > div,
#tabs-content .d-flex,
#tabs-content .h-100 {
  height: 100% !important;
}

.ag-theme-quartz,
.ag-theme-quartz .ag-root-wrapper,
.ag-theme-quartz .ag-root-wrapper-body {
  height: 100% !important;
}

/* Refinos do AG Grid */
.ag-theme-quartz {
  --ag-header-background-color: #f5f7fb;
  --ag-odd-row-background-color: #ffffff;
  --ag-row-hover-color: #f0f4ff;
  --ag-font-size: 12.5px;
  border-radius: 10px;
}
