/* Steam ID table cells — readable format, copy, profile link */
.steam-id-cell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}

.steam-id-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

.steam-id-link {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent, #ff5c1a);
  text-decoration: none;
  line-height: 1.3;
  word-break: break-all;
}

.steam-id-link:hover {
  text-decoration: underline;
}

.steam-id-sub {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  color: var(--text-muted, #7a7a7a);
  line-height: 1.2;
  word-break: break-all;
}

.steam-id-inline {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  color: var(--text-secondary, #9a9a9a);
}

.steam-id-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.steam-id-copy,
.steam-id-ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted, #9a9a9a);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.steam-id-copy:hover,
.steam-id-ext:hover {
  color: var(--text-primary, #f2f2f2);
  border-color: rgba(255, 92, 26, 0.45);
}

.steam-id-copy svg,
.steam-id-ext svg {
  width: 14px;
  height: 14px;
}

.data-table td .steam-id-cell {
  padding: 0.15rem 0;
}

/* Compact Steam IDs inside data tables */
.data-table .steam-id-cell {
  align-items: center;
  gap: 0.35rem;
}
.data-table .steam-id-main {
  gap: 0.05rem;
}
.data-table .steam-id-link {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
}
.data-table .steam-id-sub {
  font-size: 0.62rem;
  line-height: 1.15;
}
.data-table .steam-id-copy,
.data-table .steam-id-ext {
  width: 22px;
  height: 22px;
}
.data-table .steam-id-copy svg,
.data-table .steam-id-ext svg {
  width: 12px;
  height: 12px;
}
