/* Dark-theme overrides for the admin page.
 * auth.css ships light-mode tokens; we re-declare the root vars here
 * so everything below uses dark values automatically. */
:root {
  --bg: #0d0d0f;
  --bg-elevated: #1a1a1a;
  --text: #f0f0f2;
  --text-secondary: #a0a0a8;
  --text-tertiary: #606068;
  --surface: #111113;
  --surface-alt: #1c1c1e;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #4ea8de;
  --accent-hover: #6ab8e8;
  --danger: #dc3c3c;
  --success: #4aa84e;
}

/* Override auth.css body centering — admin needs full-page layout. */
body {
  display: block;
  align-items: unset;
  justify-content: unset;
}

/* Layout: sidebar + detail on wide; stacked on narrow. */
.layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}
@media (max-width: 1099px) {
  .layout { grid-template-columns: 1fr; }
  .layout.detail-open .sidebar { display: none; }
  .layout:not(.detail-open) .detail { display: none; }
}

.sidebar {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 20px 16px;
  overflow-y: auto;
}
.detail {
  padding: 24px;
  overflow-y: auto;
}

/* List (sidebar) */
.list-toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.list-toolbar input[type="search"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
  color: var(--text);
  font-size: 14px;
}
.list-toolbar select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.list-toolbar button.primary {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.user-row {
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-row:hover { background: rgba(255,255,255,0.04); }
.user-row.active { background: rgba(78,168,222,0.15); }
.user-row .email { font-weight: 600; font-size: 14px; }
.user-row .name { color: var(--text-secondary); font-size: 13px; }
.user-row .badges { display: flex; gap: 6px; margin-top: 4px; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge.admin { background: rgba(78,168,222,0.2); color: #4ea8de; }
.badge.scheduled { background: rgba(244,131,37,0.2); color: #f48325; }
.badge.due { background: rgba(220,60,60,0.2); color: #ff6b6b; animation: due-pulse 2s ease-in-out infinite; }
.badge.no-passkey { background: rgba(220,60,60,0.15); color: #dc3c3c; }

@keyframes due-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Deletion-due banner — surfaces past-grace accounts at the top of
   the user list. Click filters the list to deletion-due. */
.due-banner {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(220,60,60,0.18) 0%, rgba(220,60,60,0.08) 100%);
  border: 1px solid rgba(220,60,60,0.4);
  border-radius: 10px;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.35;
}
.due-banner:hover { background: rgba(220,60,60,0.25); }
.due-banner strong { font-weight: 600; }
.due-banner small { color: rgba(255,107,107,0.8); font-size: 12px; }

/* Detail */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.detail-header h1 { margin: 0 0 6px; font-size: 22px; }
.detail-header .email { color: var(--text-secondary); }
.detail-header .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-header .actions button { padding: 6px 12px; border-radius: 7px; font-size: 13px; cursor: pointer; border: 0; }
.detail-header .actions button.primary { background: var(--accent); color: white; }
.detail-header .actions button.destructive { background: rgba(220,60,60,0.15); color: #dc3c3c; }

.section {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px 18px;
}
.section h2 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}
.row:last-child { border-bottom: 0; }
.row .meta { flex: 1; }
.row .meta strong { display: block; }
.row .meta small { color: var(--text-tertiary); display: block; font-size: 12px; }
.row .actions button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}
.row .actions button.destructive { color: #dc3c3c; border-color: rgba(220,60,60,0.3); }

/* Elevation pill */
.elevation-pill {
  position: fixed;
  top: 12px;
  right: 12px;
  background: rgba(78,168,222,0.15);
  color: #4ea8de;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  display: none;
}
.elevation-pill.active { display: block; }

/* Modal overlay (used by elevation + confirm-delete) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal {
  background: var(--bg-elevated, #1a1a1a);
  padding: 24px;
  border-radius: 12px;
  max-width: 420px;
  width: calc(100% - 40px);
}
.modal h3 { margin: 0 0 12px; font-size: 17px; }
.modal p { margin: 0 0 14px; color: var(--text-secondary); }
.modal .modal-actions { display: flex; justify-content: flex-end; gap: 8px; }

/* Toast */
#toast-root {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 90;
}
.toast {
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  border-left: 3px solid #4ea8de;
}
.toast.error { border-left-color: #dc3c3c; }
.toast.success { border-left-color: #4aa84e; }

/* ---- Section nav (Users / Feedback) ---- */
.platform-section-nav {
  display: flex;
  gap: 4px;
  margin: -4px 0 12px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.platform-section-nav__link {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.platform-section-nav__link:hover { color: var(--text); }
.platform-section-nav__link.is-active {
  background: rgba(78,168,222,0.2);
  color: #4ea8de;
}

/* ---- Feedback list (sub-tabs + filters + rows) ---- */
.feedback-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  margin-bottom: 10px;
}
.feedback-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.feedback-tab:hover { color: var(--text); }
.feedback-tab.active { background: rgba(78,168,222,0.2); color: #4ea8de; }

.feedback-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.feedback-search,
.feedback-source-select {
  width: 100%;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
}
.feedback-search:focus,
.feedback-source-select:focus { outline: none; border-color: #4ea8de; }
.feedback-spam-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
}
.feedback-spam-toggle input { accent-color: #4ea8de; }

.feedback-list-rows .user-row { padding-bottom: 10px; }
.feedback-row .feedback-source-tag {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(78,168,222,0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #4ea8de;
  letter-spacing: 0.02em;
}
.feedback-preview {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.feedback-empty {
  padding: 24px 8px;
  color: var(--text-tertiary);
  font-size: 13px;
  text-align: center;
}
.feedback-list-footer { padding: 8px 0 16px; }
.feedback-load-more {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.feedback-load-more:hover { background: rgba(255,255,255,0.08); }
.feedback-load-more:disabled { opacity: 0.5; cursor: wait; }

.feedback-badge--spam   { background: rgba(220,60,60,0.2);  color: #ff6b6b; }
.feedback-badge--unsub  { background: rgba(120,120,128,0.2); color: var(--text-secondary); }

/* ---- Feedback detail pane ---- */
.detail-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.detail-section h3 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}
.feedback-message {
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
  border-radius: 10px;
  word-break: break-word;
}
.feedback-meta {
  display: grid;
  grid-template-columns: minmax(140px, max-content) 1fr;
  gap: 4px 16px;
  margin: 0;
  font-size: 13px;
}
.feedback-meta dt {
  color: var(--text-tertiary);
  font-weight: 500;
}
.feedback-meta dd {
  margin: 0;
  color: var(--text);
  word-break: break-all;
}
.empty-detail {
  padding: 48px 24px;
  color: var(--text-secondary);
  text-align: center;
}
.empty-detail h2 { margin: 0 0 8px; font-size: 18px; color: var(--text); }
.empty-detail p { margin: 0; font-size: 14px; }
.loading {
  padding: 48px;
  text-align: center;
  color: var(--text-tertiary);
}

/* ---- Organizations sidebar ---- */
.org-list { padding: 8px 12px; }
.org-list__filter input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 12px;
}
.org-list__rows { list-style: none; padding: 0; margin: 0; }
.org-list__row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.org-list__row:hover { background: rgba(255, 255, 255, 0.04); }
.org-list__row.is-active { background: rgba(78, 168, 222, 0.15); }
.org-list__avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.org-list__meta { display: flex; flex-direction: column; min-width: 0; }
.org-list__meta strong { font-size: 14px; }
.org-list__meta small { font-size: 12px; color: var(--text-secondary); }
.org-list__loading,
.org-list__empty,
.org-list__error {
  list-style: none;
  padding: 16px 8px;
  color: var(--text-secondary);
  font-size: 13px;
}
.org-list__error { color: var(--danger); }

/* ---- Organization detail pane ---- */
.org-detail { padding: 24px 32px; max-width: 760px; }
.org-detail__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.org-detail__logo,
.org-detail__logo--placeholder {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-detail__logo img { object-fit: contain; max-width: 100%; max-height: 100%; }
.org-detail__logo--placeholder {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.org-detail__title h1 { margin: 0; font-size: 22px; }
.org-detail__title small { font-size: 13px; color: var(--text-secondary); }

.org-branding-card { margin-bottom: 24px; }
.org-branding-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.org-branding-row:hover { background: rgba(255, 255, 255, 0.04); }
.org-branding-row:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.org-branding-row__preview,
.org-branding-row__preview--placeholder {
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.org-branding-row__preview img { object-fit: contain; max-width: 100%; max-height: 100%; }
.org-branding-row__preview--placeholder {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.org-branding-row__meta strong { display: block; font-size: 14px; color: var(--accent); }
.org-branding-row__meta .hint { font-size: 12px; color: var(--text-tertiary); margin: 4px 0 0; }

.row-secondary-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.btn-text {
  background: transparent;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 4px;
}
.btn-text:hover { text-decoration: underline; }
.btn-text-danger {
  background: transparent;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 4px;
}
.btn-text-danger:hover { text-decoration: underline; }

/* ---- Org → shows list ---- */
.org-shows { list-style: none; margin: 0; padding: 0; }
.org-shows__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.org-shows__row:last-child { border-bottom: none; }
.org-shows__name { font-weight: 600; font-size: 14px; }
.org-shows__slug code {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
}
.badge--ok { color: var(--accent); background: rgba(78, 168, 222, 0.15); }
.badge--inherit { color: #9eb37f; background: rgba(158, 179, 127, 0.15); }
.badge--muted { color: var(--text-tertiary); background: rgba(255, 255, 255, 0.06); }
/* App-notice severity. Required reads loud (red); suggested is calmer
 * blue so the list lets admins eyeball blocking-vs-soft at a glance. */
.badge--severity-required  { color: #ff6b6b; background: rgba(220, 60, 60, 0.15); }
.badge--severity-suggested { color: #4ea8de; background: rgba(78, 168, 222, 0.15); }

/* App-notice form layout — two-column grid for paired fields like
 * min/max version and label/kind. Stacks on narrow viewports. */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}
.form-row__inline-actions {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Shared button family for the App Notices section. The rest of the
 * platform-admin chrome uses bare `.primary`; keeping these scoped
 * means we don't accidentally affect existing controls. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-sm { padding: 6px 10px; font-size: 13px; }
.btn-xs { padding: 4px 8px;  font-size: 12px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.10); }

.btn-danger {
  background: rgba(220, 60, 60, 0.12);
  color: #ff6b6b;
  border-color: rgba(220, 60, 60, 0.30);
}
.btn-danger:hover { background: rgba(220, 60, 60, 0.20); }

/* App Notices sidebar list — title + meta layout, matching the
 * users / orgs sidebar but with severity + version-range badges. */
.list-toolbar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.list-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
}
.list-rows { display: flex; flex-direction: column; }
.list-row {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.list-row:hover { background: rgba(255, 255, 255, 0.04); }
.list-row--active {
  background: rgba(78, 168, 222, 0.10);
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}
.list-row--dim { opacity: 0.55; }
.list-row__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
  word-break: break-word;
}
.list-row__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
}
.list-row__faded { color: var(--text-tertiary); }

/* Detail-pane scaffolding for App Notices (and re-usable across any
 * future detail pane that wants the same look). */
.detail-card {
  padding: 24px;
  max-width: 720px;
}
.detail-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
}
.detail-empty,
.detail-loading,
.detail-error {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-secondary);
}
.detail-empty h2 {
  margin: 0 0 12px;
  color: var(--text-primary);
}
.detail-empty p {
  max-width: 460px;
  margin: 0 auto 12px;
  line-height: 1.45;
}
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}
.form-input {
  width: 100%;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
}
.form-input:focus {
  outline: 0;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
textarea.form-input { resize: vertical; min-height: 80px; }
.form-hint {
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.4;
}
.form-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Analytics dashboard */
.analytics-overview { padding: 16px; }
.analytics-overview__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.analytics-counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.analytics-counter { padding: 16px; background: var(--surface, #f7f7f9); border-radius: 8px; text-align: center; }
.analytics-counter__value { font-size: 28px; font-weight: 600; }
.analytics-counter__label { color: #666; font-size: 13px; margin-top: 4px; }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.analytics-panel { padding: 12px; background: var(--surface, #f7f7f9); border-radius: 8px; }
.analytics-panel h3 { margin: 0 0 8px 0; font-size: 14px; font-weight: 600; }
.analytics-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.analytics-table td, .analytics-table th { padding: 4px 8px; text-align: left; border-bottom: 1px solid #eee; }
.analytics-table th { font-weight: 600; }
.analytics-sparkline { width: 100%; height: auto; }
.analytics-legend { font-size: 12px; color: #666; margin-top: 4px; }
.analytics-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; vertical-align: middle; margin: 0 4px 0 8px; }
.analytics-empty { color: #888; font-size: 13px; }
.sidebar-info { padding: 12px; color: #666; font-size: 13px; }

/* Analytics — side nav + visitors list */
.analytics-side-nav { display: flex; gap: 8px; padding: 12px; border-bottom: 1px solid #eee; }
.analytics-side-nav a { padding: 4px 10px; border-radius: 6px; color: #555; text-decoration: none; font-size: 13px; }
.analytics-side-nav a.is-active { background: #4a90e2; color: white; }
.analytics-visitors-list { padding: 4px 0; }
.analytics-visitor-row { display: block; padding: 10px 12px; text-decoration: none; color: inherit; border-bottom: 1px solid #f0f0f0; }
.analytics-visitor-row:hover { background: #f7f7f9; }
.analytics-visitor-row.is-active { background: #e8f0fa; }
.analytics-visitor-row__title { font-size: 13px; font-weight: 600; }
.analytics-visitor-row__meta { font-size: 11px; color: #666; margin-top: 2px; }
.analytics-visitor-row__when { font-size: 11px; color: #888; margin-top: 2px; }
.analytics-visitor-detail { padding: 16px; }
.analytics-visitor-detail__header h2 { margin: 0 0 4px 0; }
.analytics-visitor-detail__sub { font-size: 13px; color: #666; margin-bottom: 16px; }

/* Analytics — Shows list */
.analytics-shows-list { padding: 4px 0; }
.analytics-show-row { display: block; padding: 10px 12px; text-decoration: none; color: inherit; border-bottom: 1px solid #f0f0f0; }
.analytics-show-row:hover { background: #f7f7f9; }
.analytics-show-row.is-active { background: #e8f0fa; }
.analytics-show-row__title { font-size: 13px; font-weight: 600; }
.analytics-show-row__meta { font-size: 11px; color: #666; margin-top: 2px; }
