/* pc-tabs.css — Painel do Caixa: abas pílula + subgrupos + filtros histórico */

/* === ABAS PÍLULA === */
.pc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pc-tab {
  padding: 8px 13px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  border: 0.5px solid #C7E59B;
  cursor: pointer;
  background: #fff;
  color: #3A5A2A;
  text-align: center;
  transition: background .14s, color .14s, border-color .14s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}
.pc-tab.ativo {
  background: #005C28;
  color: #fff;
  border-color: #005C28;
}
.pc-badge {
  display: inline-block;
  background: #FAEEDA;
  color: #854F0B;
  font-size: 11.5px;
  font-weight: 500;
  padding: 1px 8px;
  border-radius: 20px;
  line-height: 1.5;
  min-width: 18px;
  text-align: center;
}
.pc-tab.ativo .pc-badge {
  background: #99D420;
  color: #005C28;
}

/* === RESUMO (subtítulo dinâmico) === */
#pc-resumo {
  font-size: 13px;
  color: var(--text2, #6b7280);
  min-height: 18px;
}

/* === SUBGRUPO (label entre grupos de entregadores/vendedores) === */
.pc-subgrupo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9ca3af;
  margin: 14px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f0f0f0;
}
.pc-subgrupo:first-child {
  margin-top: 4px;
}

/* === FILTROS HISTÓRICO === */
.pc-hist-filtros {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.pc-hist-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  align-items: end;
}
.pc-hist-row-btns {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  padding-bottom: 1px;
}
