/* dashboard.css — tableau de bord joueur */
.dashboard-panel { grid-column: 1 / -1; padding: 30px; }

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.dashboard-header h2 { margin-bottom: 10px; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dash-card, .dash-section {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.dash-card { padding: 20px; }

.dash-label {
  display: block;
  margin-bottom: 10px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dash-card strong { display: block; font-size: 22px; overflow-wrap: anywhere; }
.dash-card p { margin-bottom: 0; }

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
}

.dash-section { padding: 22px; }
.dash-section h3 { margin: 0 0 16px; font-size: 22px; }

.profile-list { display: grid; gap: 12px; }
.profile-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.profile-list div:last-child { border-bottom: 0; }
.profile-list span, .muted { color: var(--muted); }
.profile-list strong { text-align: right; }

.species-list { display: grid; gap: 12px; }
.species-item {
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}
.species-item strong { display: block; margin-bottom: 4px; }
.species-item p { margin: 0; }
.species-item > span {
  width: 18px;
  height: 46px;
  border-radius: 999px;
  box-shadow: 0 0 26px currentColor;
}
