/* Styles for MCP tokens admin page. */

.token-reveal {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 0.5rem;
}

.token-reveal-warning {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(200, 160, 80, 0.15);
  border-left: 3px solid #c8a050;
  border-radius: 0.25rem;
  color: var(--fg, #eee);
  font-size: 0.95rem;
  line-height: 1.4;
}

.token-reveal-label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted, rgba(255, 255, 255, 0.5));
}

.token-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.35rem;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.token-value-text {
  flex: 1;
  font-family: inherit;
}

.token-copy-btn {
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  color: var(--fg, #eee);
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.token-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.token-copy-btn.copied {
  background: rgba(100, 180, 100, 0.2);
  color: #7d7;
}

.token-reveal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-badge.status-active {
  background: rgba(100, 200, 100, 0.2);
  color: #7d7;
}

.status-badge.status-revoked {
  background: rgba(200, 100, 100, 0.2);
  color: #d77;
}
