/* ── Portfolio Leaderboard Module ────────────────────────────────────────── */

.pl-wrap {
  font-family: system-ui, -apple-system, sans-serif;
  color: #1a202c;
  margin: 16px 0;
  max-width: 100%;
}

/* Controls */
.pl-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #ebf8ff;
  border: 1px solid #bee3f8;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  flex-wrap: wrap;
}

.pl-search {
  flex: 1;
  min-width: 160px;
  padding: 7px 12px;
  border: 1px solid #bee3f8;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  color: #1a202c;
  background: #fff;
}

.pl-search:focus {
  border-color: #63b3ed;
  box-shadow: 0 0 0 3px rgba(99,179,237,0.2);
}

.pl-count {
  font-size: 12px;
  color: #2b6cb0;
  font-weight: 600;
  white-space: nowrap;
}

/* Table */
.pl-table-wrap {
  overflow-x: auto;
  border: 1px solid #bee3f8;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pl-table thead {
  background: #1e3a5f;
}

.pl-th {
  padding: 10px 12px;
  text-align: left;
  color: #90cdf4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  border-right: 1px solid #2d5282;
}

.pl-th:last-child { border-right: none; }

.pl-row {
  border-bottom: 1px solid #ebf8ff;
  transition: background 0.1s;
}

.pl-row:last-child { border-bottom: none; }
.pl-row:nth-child(even) { background: #f0f8ff; }
.pl-row:hover { background: #ebf8ff; }

.pl-table td {
  padding: 9px 12px;
  vertical-align: middle;
  border-right: 1px solid #ebf8ff;
}

.pl-table td:last-child { border-right: none; }

/* Rank column */
.pl-rank {
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  width: 36px;
  color: #718096;
}

.pl-rank-gold   { color: #b7791f; }
.pl-rank-silver { color: #718096; }
.pl-rank-bronze { color: #9c4221; }

/* Current user highlight */
.pl-current-user {
  background: #ebf8ff !important;
  border-left: 3px solid #63b3ed;
}

.pl-current-user:hover { background: #bee3f8 !important; }

/* Username */
.pl-username {
  font-weight: 600;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pl-you {
  background: #bee3f8;
  color: #2b6cb0;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

/* Value columns */
.pl-total  { font-weight: 700; color: #1e3a5f; }
.pl-cash   { color: #718096; }
.pl-mktval { color: #2d3748; }
.pl-pnl    { font-weight: 700; }

@media (max-width: 600px) {
  .pl-th, .pl-table td { padding: 7px 8px; font-size: 12px; }
}
