/* Shared styles for Ticket link + copyable ID pill (ClickUp/TimeSheet) */
:root {
  --ticket-brand: #0d6efd; /* Bootstrap primary-ish */
  --ticket-ring: rgba(13,110,253,.25);
}
/* Container to keep alignment identical across rows */
.ticket-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }

/* Make link pill look the same as the ID pill, but keep blue text color */
.ticket-link,
.ticket-id {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px; text-decoration: none;
  background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.08);
  transition: background .2s ease, box-shadow .2s ease, transform .08s ease, color .2s ease;
}
.ticket-link { color: var(--ticket-brand); }
.ticket-id { color: #6c757d; cursor: pointer; user-select: none; }

.ticket-link:hover,
.ticket-id:hover { background: rgba(0,0,0,.06); transform: translateY(-1px); }
.ticket-link:active,
.ticket-id:active { transform: translateY(0); }
.ticket-link:focus-visible,
.ticket-id:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ticket-ring); }

.ticket-id .kbd { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-variant-numeric: tabular-nums; }
.ticket-id.copied { background: rgba(25,135,84,.12); border-color: rgba(25,135,84,.35); color: #198754; }
/* Remove icon visuals (we're not showing the link icon anymore) */
.ticket-icon { display: none; }
.ticket-text { font-weight: 600; letter-spacing: .2px; }
