/* TOPERTO ENTREGADOR 25U - Historico */
.tp25u-hist-wrap {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.tp25u-hist-head,
.tp25u-hist-card,
.tp25u-hist-panel {
  border: 1px solid rgba(148, 163, 184, .24);
  background: rgba(15, 23, 42, .92);
  color: #e5e7eb;
  border-radius: 22px;
  padding: 16px;
}

.tp25u-hist-head h1 {
  margin: 0 0 6px;
  font-size: 30px;
}

.tp25u-hist-head p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.45;
}

.tp25u-hist-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tp25u-hist-btn,
.tp25u-hist-float {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .28);
  background: rgba(30, 41, 59, .90);
  color: #e5e7eb;
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.tp25u-hist-btn.primary,
.tp25u-hist-float {
  border-color: rgba(251, 90, 5, .55);
  background: linear-gradient(135deg, #fb5a05, #f97316);
  color: #fff;
}

.tp25u-hist-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99990;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.tp25u-hist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tp25u-hist-kpi small {
  display: block;
  color: #94a3b8;
  margin-bottom: 4px;
}

.tp25u-hist-kpi strong {
  display: block;
  font-size: 24px;
}

.tp25u-hist-list {
  display: grid;
  gap: 10px;
}

.tp25u-hist-item {
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(30, 41, 59, .74);
  border-radius: 20px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.tp25u-hist-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.tp25u-hist-top h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.tp25u-hist-top small,
.tp25u-hist-meta {
  color: #94a3b8;
  line-height: 1.4;
}

.tp25u-hist-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(34, 197, 94, .45);
  background: rgba(34, 197, 94, .12);
  color: #bbf7d0;
}

.tp25u-hist-badge.cancel {
  border-color: rgba(239, 68, 68, .45);
  background: rgba(239, 68, 68, .12);
  color: #fecaca;
}

.tp25u-hist-money {
  font-weight: 1000;
  font-size: 20px;
  color: #bbf7d0;
  white-space: nowrap;
}

.tp25u-hist-empty,
.tp25u-hist-alert {
  border: 1px dashed rgba(148, 163, 184, .30);
  border-radius: 18px;
  padding: 14px;
  color: #94a3b8;
  line-height: 1.45;
}

.tp25u-hist-alert.err {
  border-color: rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .10);
  color: #fecaca;
}

@media (max-width: 860px) {
  .tp25u-hist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp25u-hist-top {
    display: grid;
  }
}

@media (max-width: 560px) {
  .tp25u-hist-grid {
    grid-template-columns: 1fr;
  }
}