:root {
  --bg: #f4f6f8;
  --card: #fff;
  --text: #1a1a2e;
  --muted: #5c6370;
  --accent: #2563eb;
  --border: #e2e8f0;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.topbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.staff-notice-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.5rem 1.5rem;
  background: #fff8e1;
  border-bottom: 1px solid #fcd34d;
  position: sticky;
  top: 3.25rem;
  z-index: 190;
}
.notice-chip {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.notice-chip:hover { background: rgba(0, 0, 0, 0.05); }
.notice-chip--warn { font-weight: 500; }
.staff-subnav {
  margin: 0;
  padding: 0.5rem 1.5rem 0.6rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 3.25rem;
  z-index: 180;
}
body:has(.staff-notice-bar) .staff-subnav {
  top: 6.1rem;
}
.topbar--anonymous { background: #f8fafc; }
.topbar a { color: var(--text); text-decoration: none; }
.topbar nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.topbar nav a.active { color: var(--accent); font-weight: 600; }
.brand { font-weight: 700; margin-right: 0.5rem; }
.topbar-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.topbar-email { font-size: 0.9rem; color: var(--muted); max-width: 14rem; overflow: hidden; text-overflow: ellipsis; }
.logout-form { margin: 0; display: flex; align-items: center; }
.logout-form button {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  cursor: pointer;
  font-size: 0.9rem;
}
.logout-form button:hover { background: #f1f5f9; }
.container { max-width: 960px; margin: 0 auto; padding: 1.5rem; }
.workspace-container { max-width: 1280px; }
.admin-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.admin-nav a {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}
.admin-nav a.active { background: #e8eef9; color: var(--accent); font-weight: 600; }
.alert-banner {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-banner.warn { background: #fff8e1; border: 1px solid #fcd34d; }
.alert-banner.ok { background: #ecfdf5; border: 1px solid #86efac; }
.alert-banner.error { background: #fef2f2; border: 1px solid #fca5a5; }
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 1rem;
  align-items: end;
}
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.card-header-row h2 { margin: 0; font-size: 1.1rem; }
.th-sort-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.th-sort-link:hover { text-decoration: underline; }
.th-sorted { background: #f5f8fc; }
.badge-count {
  background: #e2e8f0;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.workspace-filters { margin-bottom: 1rem; padding: 1rem 1.25rem; overflow: visible; }
.workspace-filters .search-field-primary,
.workspace-filters .live-search-wrap { overflow: visible; }
.live-search-hint { margin: 0.35rem 0 0; font-size: 0.8rem; }
.workspace-filters label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; font-weight: 500; }
.workspace-filters select,
.workspace-filters input[type="search"] {
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}
.filter-hint { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.checkbox-label { flex-direction: row !important; align-items: center; gap: 0.5rem !important; }
.search-field { grid-column: span 2; }
.search-field-primary { grid-column: 1 / -1; }
.workspace-intro { margin: 0 0 1rem; font-size: 0.95rem; }
.module-nav { margin-bottom: 1rem; }
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.tab-nav a {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}
.tab-nav a.active { background: #e8eef9; color: var(--accent); font-weight: 600; }
.detail-dl { display: grid; grid-template-columns: 10rem 1fr; gap: 0.5rem 1rem; }
.detail-dl dt { color: var(--muted); font-weight: 500; }
.detail-dl .small { font-size: 0.8rem; margin-left: 0.35rem; }
.sync-meta { font-size: 0.85rem; margin-bottom: 0.75rem; }
.sync-log-card { margin-top: 1.5rem; padding: 1rem 1.25rem; }
.data-table.compact { font-size: 0.85rem; }
.note-list { list-style: none; padding: 0; }
.note-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.crm-info-fields { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.crm-info-field h3 { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; }
.ekonomi-view-tabs { flex-wrap: wrap; margin-bottom: 1rem; }
.ekonomi-seller-link { margin-left: auto; font-size: 0.85rem; }
.ekonomi-table .workflow-form select { max-width: 11rem; font-size: 0.85rem; }
.seller-row-form { display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem; align-items: center; }
.seller-row-form input[type="text"] { min-width: 12rem; flex: 1; }
.row-new-comment { background: #fffbeb; }
.badge-new { color: #d97706; font-weight: 700; margin-left: 0.25rem; }
.sms-cell { white-space: nowrap; }
.crm-info-text {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
}
.cell-err { color: #b91c1c; max-width: 20rem; overflow: hidden; text-overflow: ellipsis; }
.settings-actions-card { padding: 1.25rem; margin-bottom: 1.25rem; }
.settings-actions-card h2 { margin-top: 0; font-size: 1.1rem; }
.settings-action-block { margin-bottom: 1rem; }
.settings-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.settings-create-form { max-width: 28rem; }
.settings-next { margin-top: 1.5rem; }
.badge-demo {
  font-size: 0.75rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.35rem;
}
.cell-actions { white-space: nowrap; }
.btn-danger-text { background: none; border: none; color: #b91c1c; cursor: pointer; text-decoration: underline; font-size: 0.9rem; }
.msg-ok { color: #166534; background: #ecfdf5; padding: 0.6rem 1rem; border-radius: 6px; margin-bottom: 1rem; }
.msg-warn { color: #92400e; background: #fffbeb; padding: 0.6rem 1rem; border-radius: 6px; margin-bottom: 1rem; border: 1px solid #fde68a; }
.workspace-table-card { padding: 1rem 1.25rem; }
.table-scroll { overflow-x: auto; }
.data-table { width: 100%; min-width: 640px; }
.empty-state { padding: 2rem 0; text-align: center; }
.inline-form { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.inline-form select { min-width: 14rem; padding: 0.35rem; }
.muted { color: var(--muted); }
.data-table tr.row-muted td { color: var(--muted); }
.stats { display: flex; gap: 1rem; margin: 1.5rem 0; }
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 120px;
  text-align: center;
}
.stat .num { display: block; font-size: 1.75rem; font-weight: 700; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
}
th, td { padding: 0.6rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #f8fafc; font-size: 0.85rem; }
.next-steps { color: var(--muted); margin-top: 2rem; }
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 360px;
}
.login-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}
.login-card label { display: block; margin-top: 0.75rem; font-size: 0.9rem; }
.login-card input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.login-card button {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.6rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.error { color: #b91c1c; }
.msg-error { color: #b91c1c; background: #fef2f2; padding: 0.75rem 1rem; border-radius: 8px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.card h2 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.detail-grid {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.35rem 1rem;
  margin: 0;
}
.detail-grid dt { color: var(--muted); margin: 0; }
.detail-grid dd { margin: 0; }
.small { font-size: 0.85rem; }
.card button {
  padding: 0.35rem 0.65rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}
.toolbar { margin: 0.75rem 0 1.25rem; }
.btn-primary {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}
.btn-link { margin-left: 0.75rem; color: var(--muted); }
.company-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.company-form input,
.company-form textarea {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.35rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}
.company-form .hint {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.company-form .required { color: #b91c1c; }
.form-actions { margin-top: 1.25rem; }
.form-actions button {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.filter-bar select {
  display: block;
  margin-top: 0.35rem;
  padding: 0.4rem 0.5rem;
  min-width: 12rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.company-form select {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.35rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.filter-bar .search-field { flex: 1; min-width: 14rem; }
.filter-bar .search-field input {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin-top: 0.35rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.btn-filter {
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  height: fit-content;
}
.live-search-wrap { position: relative; }
.live-search-dropdown {
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
  top: 100%;
  min-width: 100%;
  max-height: 20rem;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 2px;
}
.live-search-dropdown--wide {
  min-width: min(44rem, calc(100vw - 2.5rem));
  max-width: 52rem;
  max-height: 26rem;
}
.live-search-dropdown.hidden { display: none; }
.live-search-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.9rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
}
/* Åsidosätt .card button (blå) för live-sök-träffar */
.workspace-filters.card .live-search-item {
  background: var(--card);
  color: var(--text);
  border-radius: 0;
  font-weight: normal;
  font-size: inherit;
}
.workspace-filters.card .live-search-item:hover {
  background: #eef4ff;
  color: var(--text);
}
.workspace-filters.card .live-search-item:focus-visible {
  background: #eef4ff;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.live-search-item:hover { background: #f0f4ff; }
.live-search-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-search-item-context {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-search-item-packages {
  font-size: 0.82rem;
  line-height: 1.4;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
.workspace-filters.card .live-search-item-title {
  color: var(--text);
  font-weight: 600;
}
.workspace-filters.card .live-search-item-context {
  color: var(--muted);
}
.workspace-filters.card .live-search-item-packages {
  color: #334155;
}
.live-search-item-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.live-search-empty { padding: 0.75rem 0.9rem; color: var(--muted); font-size: 0.85rem; }
.cell-packages { max-width: 28rem; font-size: 0.85rem; line-height: 1.35; }
th.num, td.num { text-align: center; white-space: nowrap; }
.customer-row { cursor: pointer; }
.customer-row:hover { background: #f8fafc; }
a.customer-link {
  color: var(--accent, #1e3a5f);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
a.customer-link:hover { color: #0f2744; }
.btn-link.active { color: var(--accent, #1e3a5f); font-weight: 600; }
.kundsupport-presets { margin-bottom: 0.75rem; }
.row-highlight { background: #fff8e1 !important; }

/* Statusikoner — betalning + SimpleSign */
.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
}
.status-icon {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
}
/* Betalning: grön=betald, orange=obetald, lila=krediterad, amber=påminnelse, röd=inkasso, grå=saknas */
.status-icon--green { background: #22c55e; }
.status-icon--unpaid { background: #f97316; }
.status-icon--credited { background: #7c3aed; }
.status-icon--to_credit {
  background: #ede9fe;
  border: 2px dashed #7c3aed;
}
.status-icon--yellow { background: #ca8a04; }
.status-icon--red { background: #ef4444; }
.status-icon--unknown { background: #cbd5e1; border: 1px solid #94a3b8; }
.topbar-dev-hint { font-size: 0.85rem; margin-right: 0.5rem; }
.status-icons-col,
.status-icons-cell {
  width: 3.5rem;
  white-space: nowrap;
}
.nav-badge {
  display: inline-block;
  min-width: 1.1rem;
  padding: 0.05rem 0.35rem;
  margin-left: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: #dc2626;
  border-radius: 999px;
  vertical-align: super;
}
.ekonomi-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}
.dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.dashboard-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.dashboard-card-count {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}
.dashboard-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.dashboard-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.dashboard-card--warn .dashboard-card-count { color: #b45309; }
.dashboard-card--ok .dashboard-card-count { color: #15803d; }
.dashboard-card--muted .dashboard-card-count { color: #64748b; }
.filter-grid input[type="date"] {
  min-width: 10.5rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}
.batch-reminder-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f0f9ff;
}
.batch-col {
  width: 2rem;
  text-align: center;
  vertical-align: middle;
}
.ekonomi-table .batch-reminder-cb {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.sms-dev-panel {
  margin-bottom: 1rem;
  border: 1px dashed #94a3b8;
  background: #f8fafc;
}
.sms-dev-form {
  margin-top: 0.5rem;
  align-items: end;
}
.status-icons-legend {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.status-icons-legend .legend-sep {
  color: var(--border);
  margin: 0 0.15rem;
}

.sync-status-panel {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: #f8fafc;
}
.sync-status-panel--ok {
  border-color: #86efac;
  background: #f0fdf4;
}
.sync-status-panel--warn {
  border-color: #fcd34d;
  background: #fffbeb;
}
.sync-status-panel--err {
  border-color: #fca5a5;
  background: #fef2f2;
}
.sync-status-panel--running {
  border-color: #93c5fd;
  background: #eff6ff;
}
.sync-status-panel-main {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.sync-status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: #94a3b8;
}
.sync-status-panel--ok .sync-status-dot { background: #22c55e; }
.sync-status-panel--warn .sync-status-dot { background: #ca8a04; }
.sync-status-panel--err .sync-status-dot { background: #ef4444; }
.sync-status-panel--running .sync-status-dot { background: #3b82f6; }
.sync-status-headline {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.sync-status-detail {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
}
.sync-status-log {
  margin-top: 0.75rem;
}
.sync-status-log summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  user-select: none;
}
.sync-status-log table {
  margin-top: 0.5rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  vertical-align: middle;
}
.icon-btn:hover { background: #f1f5f9; }
.icon-btn-glyph { font-size: 1rem; line-height: 1; }
.ekonomi-table .seller-summary-cell {
  width: 3.25rem;
  text-align: center;
  white-space: nowrap;
}
.ekonomi-table .ekonomi-note-cell {
  min-width: 9rem;
}
.ekonomi-table .ekonomi-note-cell .ekonomi-note-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.ekonomi-table .ekonomi-note-cell .ekonomi-note-form input[type="text"] {
  min-width: 6rem;
  flex: 1 1 6rem;
}
.ekonomi-table .ekonomi-note-cell .hub-comment-btn {
  flex-shrink: 0;
}
.hub-comment-dialog {
  border: none;
  border-radius: 10px;
  padding: 0;
  max-width: min(32rem, 92vw);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
}
.hub-comment-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
}
.hub-comment-dialog-inner {
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
}
.hub-comment-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.hub-comment-dialog-header h2 {
  margin: 0;
  font-size: 1.05rem;
}
.hub-comment-dialog-body {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 50vh;
  overflow: auto;
  font-family: inherit;
  font-size: 0.9rem;
}
.dialog-close-btn {
  flex-shrink: 0;
  font-size: 1.1rem;
}
.hub-invoice-comments { margin: 1rem 0; }
.hub-invoice-comments h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.hub-comment-block + .hub-comment-block { margin-top: 0.75rem; }
.hub-comment-meta { margin: 0 0 0.35rem; font-size: 0.85rem; }
