.tabs-historico {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 10px;
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab-historico {
  flex: 1;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 8px;
  color: #888;
  font-weight: 600;
  transition: all 0.3s;
}

.tab-historico.active {
  background-color: var(--color-primary);
  color: #fff;
}

.tab-content-historico {
  display: none;
  position: relative;
  z-index: 10;
}

.tab-content-historico.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.historico-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.historico-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.historico-icon.pedido {
  background-color: rgba(245, 166, 35, 0.15);
  color: var(--color-primary);
}

.historico-icon.pontos-entrada {
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.historico-icon.pontos-saida {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.historico-info {
  flex: 1;
  margin-left: 15px;
}

.historico-info p {
  font-size: 14px;
  color: #222;
  margin-bottom: 2px;
}

.historico-info small {
  color: #888;
  font-size: 12px;
}

.historico-valor {
  text-align: right;
}

.historico-valor p {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.historico-valor small {
  font-size: 11px;
  color: #888;
}

.historico-valor.entrada p {
  color: #28a745;
}

.historico-valor.saida p {
  color: #dc3545;
}
