:root {
  /* Theme tokens: keep the stealth notebook palette centralized here. */
  color-scheme: light;
  --bg: #e7e7e7;
  --surface: #f6f6f4;
  --surface-muted: #eeeeeb;
  --surface-strong: #ffffff;
  --text: #191919;
  --text-muted: #6a6a67;
  --line: #d3d3cf;
  --accent: #b20f18;
  --accent-soft: #f1d7d9;
  --shadow: 0 16px 38px rgba(37, 37, 35, 0.09);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #171717;
  --surface: #202020;
  --surface-muted: #292928;
  --surface-strong: #252525;
  --text: #f0f0ed;
  --text-muted: #aaa8a3;
  --line: #383835;
  --accent: #d12932;
  --accent-soft: #3a1e21;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: 34px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  /* Three-pane desktop shell: nav, center workspace, source/status inspector. */
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  min-height: 100vh;
}

.sidebar,
.inspector {
  background: var(--surface-muted);
  border-color: var(--line);
}

.sidebar {
  border-right: 1px solid var(--line);
  padding: 22px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  border-radius: 6px;
}

.brand-mark {
  width: 19px;
  height: 19px;
  border: 3px solid var(--accent);
  transform: rotate(45deg);
}

/* Sidebar navigation icons are CSS-only so the static app has no asset pipeline. */
.nav-list,
.sidebar-section,
.source-list,
.brief-list,
.tool-grid,
.app-tabs,
.mini-app-list {
  display: grid;
  gap: 8px;
}

.nav-list {
  margin-top: 28px;
}

.nav-item,
.collection-item,
.quiet-button,
.icon-button,
.theme-toggle,
.app-tab,
.tool-card,
.source-item,
.mini-app-button {
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--text-muted);
  text-align: left;
}

.nav-item:hover,
.nav-item.is-active {
  background: var(--surface);
  color: var(--text);
}

.nav-item.is-active {
  border-color: var(--line);
}

.nav-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
}

.icon-all {
  background:
    linear-gradient(var(--accent), var(--accent)) 0 0 / 5px 5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 9px 0 / 5px 5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 9px / 5px 5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 9px 9px / 5px 5px no-repeat;
}

.icon-saved::before {
  left: 3px;
  top: 1px;
  width: 9px;
  height: 13px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.icon-saved::after {
  left: 5px;
  top: 4px;
  width: 5px;
  height: 2px;
  background: var(--surface);
  opacity: 0.95;
}

.icon-tech::before {
  inset: 3px;
  border: 2px solid var(--accent);
  border-radius: 2px;
}

.icon-tech::after {
  right: 0;
  top: 6px;
  width: 4px;
  height: 2px;
  background: var(--accent);
  box-shadow: -14px 0 0 var(--accent), -7px -6px 0 var(--accent), -7px 6px 0 var(--accent);
}

.icon-forum::before {
  inset: 1px 0 3px;
  border: 2px solid var(--accent);
  border-radius: 4px;
}

.icon-forum::after {
  left: 3px;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: skewX(-20deg);
}

.icon-civic::before {
  left: 1px;
  right: 1px;
  top: 2px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 9px 0 var(--accent);
}

.icon-civic::after {
  left: 3px;
  top: 5px;
  width: 2px;
  height: 6px;
  background: var(--accent);
  box-shadow: 4px 0 0 var(--accent), 8px 0 0 var(--accent);
}

.icon-social::before {
  left: 1px;
  top: 6px;
  width: 12px;
  height: 2px;
  background: var(--accent);
  transform: rotate(28deg);
}

.icon-social::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 9px 1px 0 var(--accent), 4px 8px 0 var(--accent);
}

.icon-business::before {
  left: 1px;
  bottom: 1px;
  width: 2px;
  height: 6px;
  background: var(--accent);
  box-shadow: 5px -3px 0 var(--accent), 10px -7px 0 var(--accent);
}

.icon-business::after {
  left: 0;
  bottom: 0;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.icon-utilities::before {
  left: 6px;
  top: 1px;
  width: 2px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
}

.icon-utilities::after {
  right: 0;
  top: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.sidebar-section,
.mini-app-section {
  margin-top: 34px;
}

.sidebar-section h2,
.mini-app-section h2,
.section-heading h2,
.inspector-card h2 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
}

.mini-app-section h2 {
  margin-bottom: 10px;
}

.collection-item {
  min-height: 32px;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--text-muted);
  text-align: left;
}

.collection-item:hover {
  background: var(--surface);
  color: var(--text);
}

.workspace {
  min-width: 0;
  padding: 24px;
}

.topbar,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar {
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 750;
  letter-spacing: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(440px, 100%);
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 0 12px;
}

.search span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 5px 5px 0 -3px var(--accent);
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.theme-toggle {
  width: 52px;
  height: 40px;
  padding: 0;
}

.toggle-track {
  display: flex;
  align-items: center;
  width: 48px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 3px;
}

.toggle-thumb {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 180ms ease;
}

.toggle-thumb::before,
.toggle-thumb::after {
  content: "";
  position: absolute;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toggle-thumb::before {
  left: 5px;
  top: 5px;
  width: 4px;
  height: 4px;
  border: 2px solid var(--surface);
  border-radius: 50%;
}

.toggle-thumb::after {
  left: 8px;
  top: 1px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 14px 0 var(--surface), 7px 7px 0 var(--surface), -7px 7px 0 var(--surface);
}

:root[data-theme="dark"] .toggle-thumb {
  transform: translateX(20px);
}

:root[data-theme="dark"] .toggle-thumb::before {
  left: 5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--surface);
}

:root[data-theme="dark"] .toggle-thumb::after {
  left: 9px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: none;
}

/* Center workspace panels. JS toggles .is-hidden to switch News vs Utilities. */
.news-panel,
.dashboard-panel,
.notes-panel,
.inspector-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.news-panel {
  padding: 18px;
}

.dashboard-panel {
  padding: 16px;
}

.is-hidden {
  display: none !important;
}

.quiet-button,
.icon-button {
  height: 32px;
  border-radius: 6px;
  border-color: var(--line);
  background: var(--surface-strong);
}

.quiet-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quiet-button {
  padding: 0 12px;
  color: var(--text-muted);
}

.quiet-button:hover,
.icon-button:hover {
  color: var(--text);
  border-color: var(--accent);
}

.brief-list {
  margin-top: 16px;
}

.feed-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feed-filter {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--text-muted);
  padding: 0 10px;
  cursor: pointer;
}

.feed-filter:hover,
.feed-filter.is-active {
  border-color: var(--accent);
  color: var(--text);
}

.feed-filter.is-active {
  background: var(--accent-soft);
}

.news-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

/* Feed cards include local-only triage actions: Open, Save, Dismiss. */
.feed-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  padding: 12px;
}

.feed-kicker {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feed-kicker span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-item h3 {
  margin: 8px 0 7px;
  font-size: 15px;
  line-height: 1.35;
}

.feed-item a {
  text-decoration: none;
}

.feed-item a:hover {
  color: var(--accent);
}

.feed-item p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.feed-open,
.feed-action,
.inline-action {
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-muted);
  padding: 0 8px;
  cursor: pointer;
  font-size: 12px;
  line-height: 24px;
}

.feed-open:hover,
.feed-action:hover,
.inline-action:hover {
  border-color: var(--accent);
  color: var(--text);
}

.empty-state {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.brief-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.brief-item:first-child {
  border-top: 0;
}

.brief-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
  letter-spacing: 0;
}

.brief-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.brief-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.brief-meta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
  margin-top: 18px;
}

.compact-grid {
  grid-template-columns: minmax(0, 1fr);
}

.tool-panel,
.notes-panel,
.inspector-card {
  padding: 16px;
}

.compact {
  align-items: center;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.tool-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.tool-card {
  display: block;
  width: 100%;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  padding: 12px;
  text-align: left;
}

.tool-card:hover {
  border-color: var(--accent);
}

.tool-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.tool-card p,
.inspector-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.load-status {
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.app-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.app-tab {
  min-height: 34px;
  border-color: var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.app-tab:hover,
.app-tab.is-active {
  color: var(--text);
  border-color: var(--accent);
}

.app-tab.is-active {
  background: var(--accent-soft);
}

.app-stage {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 14px;
}

/* Utility module dashboard: rectangular launcher tiles plus compact calculators. */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 12px;
}

.metric-tile span,
.metric-tile small,
.lookup-result span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.metric-tile strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.utility-form,
.lookup-app {
  display: grid;
  gap: 12px;
}

.utility-form {
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 0.75fr) minmax(150px, 1fr);
  align-items: end;
}

.utility-form-wide {
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(180px, 1.2fr);
}

.utility-form label,
.lookup-app label,
.matrix-row label {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.utility-form input,
.utility-form select,
.lookup-app input,
.matrix-row input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--surface);
  color: var(--text);
  padding: 0 10px;
}

.utility-form input:focus,
.utility-form select:focus,
.lookup-app input:focus,
.notes-panel textarea:focus,
.search:focus-within {
  border-color: var(--accent);
}

.utility-form output {
  display: flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--accent-soft);
  padding: 0 12px;
  font-weight: 800;
}

.matrix-app {
  display: grid;
  gap: 10px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(4, minmax(70px, 0.7fr)) minmax(88px, 0.8fr);
  gap: 8px;
  align-items: end;
}

.matrix-head {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.matrix-row {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 10px;
}

.matrix-row label span {
  display: none;
}

.matrix-row output {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--accent-soft);
  padding: 9px 10px;
  font-weight: 800;
}

.matrix-weights {
  grid-template-columns: repeat(4, minmax(100px, 1fr)) minmax(190px, 1.3fr);
}

.lookup-results,
.note-stack {
  display: grid;
  gap: 10px;
}

.lookup-result,
.note-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 12px;
}

.lookup-result h3,
.note-card h3 {
  margin: 4px 0 6px;
  font-size: 14px;
}

.lookup-result p,
.note-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.notes-panel textarea {
  width: 100%;
  min-height: 150px;
  margin-top: 14px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--surface-strong);
  color: var(--text);
  padding: 12px;
  line-height: 1.5;
}

.inspector {
  border-left: 1px solid var(--line);
  padding: 24px 16px;
}

.inspector-card + .inspector-card {
  margin-top: 14px;
}

.source-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  width: 100%;
  padding: 0;
  text-align: left;
}

.source-item:last-child {
  border-bottom: 0;
}

.source-state {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-app-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.utility-menu,
.utility-launcher {
  display: grid;
  gap: 8px;
}

.utility-menu {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 6px;
}

.utility-launcher {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.utility-menu-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.utility-menu-button small {
  min-width: 20px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  padding: 2px 6px;
  text-align: center;
}

.utility-menu-button:hover,
.utility-menu-button.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.mini-app-button {
  display: grid;
  align-content: space-between;
  gap: 8px;
  min-height: 84px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--text-muted);
  padding: 12px;
  cursor: pointer;
  text-align: left;
}

.mini-app-button::after {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.45;
}

.mini-app-button span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.mini-app-button small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.3;
}

.mini-app-button:hover,
.mini-app-button.is-active {
  border-color: var(--accent);
  color: var(--text);
}

.mini-app-button.is-active {
  border-color: var(--accent);
  background:
    linear-gradient(90deg, var(--accent) 0 3px, transparent 3px),
    var(--accent-soft);
}

.taskbar {
  /* Persistent bottom bar for workspace, counts, cache age, clock, and theme. */
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 180px;
  align-items: center;
  min-height: 34px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-muted) 94%, transparent);
  color: var(--text-muted);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.taskbar-primary,
.taskbar-feed,
.taskbar-meta {
  min-width: 0;
  padding: 0 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taskbar-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.task-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.taskbar-meta {
  border-left: 1px solid var(--line);
  text-align: right;
}

@media (max-width: 1180px) {
  /* Hide the inspector first; news/tools remain usable on narrower laptops. */
  .app-shell {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .inspector {
    display: none;
  }
}

@media (max-width: 900px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .nav-item {
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .sidebar-section {
    display: none;
  }

  .mini-app-list {
    margin-top: 14px;
  }

  .utility-menu,
  .utility-launcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-app-button {
    min-height: 76px;
    padding: 10px;
  }

  .mini-app-button span {
    font-size: 13px;
  }

  .workspace {
    padding: 18px;
  }

  .topbar,
  .topbar-actions,
  .lower-grid,
  .brief-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    min-width: 0;
  }

  .search {
    min-width: 0;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .feed-list,
  .app-tabs,
  .utility-grid,
  .utility-form,
  .utility-form-wide,
  .matrix-grid,
  .matrix-weights {
    grid-template-columns: 1fr;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row label span {
    display: block;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 58px;
  }

  .taskbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 58px;
  }

  .taskbar-primary,
  .taskbar-feed,
  .taskbar-meta {
    display: flex;
    align-items: center;
    min-height: 19px;
    padding: 0 10px;
  }

  .taskbar-meta {
    border-left: 0;
    text-align: left;
  }
}
