/* Dashboard */
.page-header { background: var(--bg); border-bottom: 1px solid var(--border); padding-block: 22px; }
.page-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.page-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }

.seg {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--surface);
}
.seg button {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--motion-fast);
}
.seg button.active {
  background: var(--bg);
  color: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding-block: var(--space-6);
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.stat-card .slabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.stat-card .sval {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.stat-card .ssub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-card.hi .sval { color: var(--accent); }

.table-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-8);
}
.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.table-title { font-weight: 600; font-size: 14px; }
.table-card-head { padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 14px; }

.search-input {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 13px;
  color: var(--fg);
  background: var(--surface);
  outline: none;
  width: 200px;
  transition: border-color var(--motion-fast);
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
}
thead th.r { text-align: right; }
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  vertical-align: middle;
}
tbody td.r { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface); }
.total-row td { font-weight: 700; border-top: 1px solid var(--border); }

.table-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
}
.table-pager-meta { color: var(--muted); white-space: nowrap; }
.table-pager-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-pager-num {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  min-width: 5.5em;
  text-align: center;
}

.main-pad { padding-block: var(--space-4) 80px; }

@media (max-width: 768px) {
  thead th, tbody td { padding: 9px 12px; }
  .search-input { width: 140px; }
  .table-pager {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .table-pager-nav { justify-content: center; }
}

/* Setup */
.page-wrap {
  min-height: calc(100vh - 57px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px var(--gutter) 80px;
}
.setup--time-only #rate-field,
.setup--time-only #hide-rate-field {
  display: none !important;
}
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  width: 100%;
  max-width: 860px;
}
@media (max-width: 768px) {
  .setup-grid { grid-template-columns: 1fr; }
  .preview-card { position: static; }
  .page-wrap { padding: 24px 16px 48px; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
}
.card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 24px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field[hidden] { display: none !important; margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 600; }
.hint { font-size: 12px; color: var(--muted); }
.optional { font-weight: 400; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.input::placeholder { color: var(--muted); }

.stepper {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}
.stepper button {
  padding: 9px 16px;
  background: var(--surface);
  border: none;
  font-size: 18px;
  line-height: 1;
  color: var(--fg);
  font-weight: 300;
  cursor: pointer;
  transition: background var(--motion-fast);
}
.stepper button:hover { background: var(--border); }
.stepper input {
  flex: 1;
  min-width: 0;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 9px;
  font: inherit;
  font-size: 15px;
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: center;
  background: var(--bg);
  color: var(--fg);
}
.stepper input:focus { outline: none; }

.input-group { display: flex; align-items: stretch; }
.input-prefix {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0 12px;
  font-size: 15px;
  font-family: var(--font-mono);
  color: var(--muted);
  flex-shrink: 0;
}
.input-pfx { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }

.preview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.preview-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.rate-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 18px;
  gap: 3px;
  margin-bottom: 18px;
}
.rpm {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.rpm-lbl { font-size: 12px; color: var(--muted); }
.breakdown { width: 100%; border-collapse: collapse; }
.breakdown td { padding: 8px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
.breakdown tr:last-child td { border-bottom: none; }
.breakdown .dur { color: var(--muted); }
.breakdown .val {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.pp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.pp-lbl { font-size: 13px; font-weight: 600; }
.pp-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.pp-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

/* Timer */
html.timer-page { height: 100%; }
body.timer-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.topnav.timer-nav { position: static; flex-shrink: 0; }
.topnav.timer-nav .topnav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 10px var(--container-gutter-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.meeting-info { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.meeting-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.dept-tag {
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.live-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--danger);
  flex-shrink: 0;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.paused-dot .dot { background: var(--warn); animation: none; }
.paused-dot { color: var(--warn); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.timer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px var(--container-gutter-desktop) 48px;
}
.counter-wrap { text-align: center; margin-bottom: 32px; width: 100%; max-width: 640px; }
.counter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.cost-counter.flip-counter {
  font-family: var(--font-mono);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.timer-mode-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}
.cost-counter.cost-counter--duration {
  font-family: var(--font-mono);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
}
.elapsed-display {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
body.timer--hide-rate-live #edit-rate-field,
body.timer--hide-rate-live .sep--rate {
  display: none !important;
}
body.timer--hide-rate .metrics,
body.timer--hide-rate #formula-display {
  display: none !important;
}
body.timer--duration-mode .metrics .metric--cost {
  display: none !important;
}
body.timer--duration-mode .metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
body.timer--duration-mode .metrics .metric {
  flex: 0 1 200px;
  min-width: 140px;
}
.paused-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--warn-soft);
  color: var(--warn);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 820px;
  margin-bottom: 24px;
}
@media (max-width: 680px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .metrics { grid-template-columns: 1fr 1fr; gap: 8px; } }
.metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
}
.metric .mv.flip-counter {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: inline-flex;
}
.stat-card .flip-counter,
.flip-cost .flip-counter {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.metric .ml { font-size: 11px; color: var(--muted); margin-top: 3px; display: block; }
.edit-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  width: 100%;
  max-width: 820px;
  flex-wrap: wrap;
}
.edit-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.edit-field input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font: inherit;
  font-size: 14px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg);
  background: var(--surface);
  width: 80px;
  text-align: right;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.edit-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.edit-field-text .edit-input-text {
  width: min(180px, 28vw);
  min-width: 100px;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
}
.edit-label { white-space: nowrap; }
.sep { color: var(--border); margin-inline: 4px; }
.stepper-sm {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stepper-sm button {
  padding: 4px 10px;
  background: var(--surface);
  border: none;
  font-size: 15px;
  color: var(--fg);
  cursor: pointer;
}
.stepper-sm button:hover { background: var(--border); }
.stepper-sm input {
  width: 52px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 4px 6px;
  font: inherit;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: center;
  background: var(--bg);
  color: var(--fg);
}
.stepper-sm input:focus { outline: none; }
.started-info {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  font-family: var(--font-mono);
  text-align: center;
}
.setting-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.setting-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.setting-toggle-track {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 20px;
  border-radius: var(--radius-pill);
  background: var(--border);
  transition: background var(--motion-fast);
}
.setting-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: transform var(--motion-fast);
}
.setting-toggle input:checked + .setting-toggle-track {
  background: var(--accent);
}
.setting-toggle input:checked + .setting-toggle-track::after {
  transform: translateX(14px);
}
.setting-toggle input:focus-visible + .setting-toggle-track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.setting-toggle-label { white-space: nowrap; }
@media (max-width: 640px) {
  .timer-main { padding: 12px 16px 40px; }
  .topnav.timer-nav .topnav-inner { padding-inline: 16px; }
  .meeting-name { max-width: 120px; }
  .edit-strip { padding: 10px 12px; }
}

/* Summary */
.summary-container { max-width: 760px; margin-inline: auto; padding-inline: var(--container-gutter-desktop); }
.summary-nav .topnav-inner { max-width: var(--container-max); padding-inline: var(--container-gutter-desktop); }
.meeting-hd {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.meeting-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.dept-pill {
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
}
.meeting-title-display { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.meeting-meta-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.meeting-meta-label + .meeting-dept-input { margin-top: 0; }
.meeting-title-input + .meeting-meta-label { margin-top: 4px; }
.meeting-title-input,
.meeting-dept-input {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.meeting-title-input {
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.meeting-dept-input {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  margin-bottom: 10px;
  color: var(--muted);
}
.meeting-title-input:focus,
.meeting-dept-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  color: var(--fg);
}
.meeting-dates { font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
.summary-rate-toggle-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.summary-rate-toggle-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  display: none;
}
body.summary--hide-rate .summary-rate-toggle-hint {
  display: block;
}
body.summary--hide-rate .summary-rate-detail {
  display: none !important;
}
body.summary--hide-rate .breakdown-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
body.summary--hide-rate .breakdown-grid .bcard {
  flex: 0 1 200px;
  min-width: 140px;
}
.cost-hero {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 16px;
}
.cost-hero-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.cost-total.flip-counter {
  font-family: var(--font-mono);
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.cost-duration { color: var(--muted); font-size: 15px; margin-top: 8px; font-family: var(--font-mono); }
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 600px) { .breakdown-grid { grid-template-columns: repeat(2, 1fr); } }
.bcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
}
.bcard .bval {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: block;
}
.bcard .blbl { font-size: 11px; color: var(--muted); margin-top: 3px; display: block; }
.bcard--editable {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bcard--editable .stepper-sm {
  width: 100%;
  max-width: 148px;
}
.bcard--editable .stepper-sm input {
  flex: 1;
  min-width: 0;
}
.rate-edit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.rate-edit-label { font-size: 14px; font-weight: 600; }
.rate-edit-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rate-edit-controls { display: flex; align-items: center; gap: 8px; }
.rate-prefix {
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 7px 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}
.rate-input {
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 7px 10px;
  font: inherit;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 600;
  width: 90px;
  background: var(--bg);
  color: var(--fg);
  text-align: right;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.rate-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.share-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.share-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.share-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.share-row { display: flex; gap: 8px; align-items: center; }
.share-url {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-family: var(--font-mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}
.copied-tip { font-size: 12px; color: var(--success); display: none; align-items: center; gap: 4px; }
.action-bar { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .summary-container { padding-inline: 16px; }
  .summary-nav .topnav-inner { padding-inline: 16px; }
  .meeting-hd, .cost-hero, .share-card, .rate-edit-card { padding: 18px 16px; }
  .action-bar .btn { flex: 1; justify-content: center; }
}
