/* Schützen-Dashboard at /d/<token>.
   Public surface — same strict CSP as scorecard, so all visual rules
   live in this stylesheet (no inline <style>, no style="..."). */

main.dashboard { max-width: 42rem; }

.dashboard .me {
  background: #f9fafa;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  margin: 0 0 1.5rem;
}
.dashboard .me h1.name {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}
.dashboard .me .meta {
  color: var(--text-muted);
  font-size: 0.95em;
}
.dashboard .me .meta code { font-size: 0.95em; }
.dashboard .me .not-me {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85em;
}

.dashboard h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--brand-deep);
}

.dashboard .empty {
  background: #f9fafa;
  border: 1px dashed var(--border-strong);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.dashboard .cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard .card {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 0.9rem 1rem;
}
.dashboard .card .title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 0.5rem;
}
.dashboard .card .title strong { font-size: 1.05em; color: var(--brand-deep); }
.dashboard .card .title .when { color: var(--text-muted); font-size: 0.9em; }

.dashboard .card .pills {
  margin: 0 0 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dashboard .card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dashboard .card .actions a.button {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--brand-green);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.dashboard .card .actions a.button.secondary {
  background: #fff;
  color: var(--brand-deep);
  border: 1px solid var(--border-strong);
}
.dashboard .card .actions a.button:hover { filter: brightness(0.95); }

.dashboard .footnote {
  color: var(--text-muted);
  font-size: 0.9em;
  margin: 1.5rem 0 0;
}

/* Recovery-form honeypot — hidden from sighted users + assistive tech
   (aria-hidden on the <p>) but submitted by spam bots that fill every
   input they can find. */
.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
