.passkey-status {
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eee8dc;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.passkey-status.registered {
  background: #e1f0e8;
  color: var(--green);
}

.passkey-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.passkey-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.passkey-list span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.passkey-list time {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 760px) {
  .passkey-status { font-size: 10px; }
  .passkey-list span { align-items: flex-start; flex-wrap: wrap; }
}
