/* ─── Dashboard Admin — cards de estatística + ações ──────────── */
.admin-stats { align-items: stretch; }

/* dash-profile-summary (Badges/Resgates) está comentado no admin.php,
   então o ranking geral fica colado no border-bottom do role */
.dash-ranking-geral { margin-top: 60px; }

.admin-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 calc(50% - 10px);
  width: calc(50% - 10px);
  background: rgba(0,0,0,0.53);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
}

.admin-stat-value {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 24px;
  color: #fafafb;
  margin-bottom: 4px;
}

.admin-stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #696974;
}

.admin-actions { flex-direction: row; }
.admin-actions .btn-primary { flex: 0 0 calc(50% - 10px); }

.voucher-btn { position: relative; }
.voucher-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafb;
  border-radius: 999px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 12px;
  color: #c30400;
}

@media (max-width: 640px) {
  .admin-stat-card { flex: 1 1 100%; width: 100%; }
  .admin-actions .btn-primary { flex: 1 1 100%; }
}
