/* ── Leaderboard widget — compact ──────────────────────────────────────── */

#leaderboard-widget { margin-top: 8px; }

.lb-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 10px;
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(251,191,36,0.8);
}

.lb-date {
  font-size: 9px;
  color: rgba(175,195,240,0.4);
}

.lb-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lb-entry {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  transition: background 0.15s;
}

.lb-entry:hover { background: rgba(255,255,255,0.05); }

.lb-rank {
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.lb-rank.gold   { color: #fcd34d; }
.lb-rank.silver { color: #cbd5e1; }
.lb-rank.bronze { color: #d97706; }
.lb-rank.other  { color: rgba(175,195,240,0.45); }

.lb-name {
  flex: 1;
  font-size: 10.5px;
  color: rgba(200,215,245,0.7);
}

.lb-profit {
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
}

.lb-contracts {
  font-size: 9px;
  color: rgba(175,195,240,0.35);
  flex-shrink: 0;
}

.lb-empty {
  font-size: 10px;
  color: rgba(175,195,240,0.35);
  text-align: center;
  padding: 6px 0 2px;
}

.lb-footer {
  font-size: 9px;
  color: rgba(175,195,240,0.3);
  text-align: center;
  padding-top: 1px;
}
