:root {
  --ink: #191716;
  --paper: #f3efe6;
  --paper-strong: #fffaf0;
  --line: #cfc5b5;
  --muted: #6f675d;
  --charcoal: #22211f;
  --steel: #4e6470;
  --green: #22735d;
  --amber: #c9802e;
  --red: #bb4d3b;
  --blue: #2e66a4;
  --violet: #7a5c9e;
  --cell: 18px;
  --label: 168px;
  --lane-height: 94px;
  --bar-height: 60px;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(rgba(25, 23, 22, 0.035) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--paper);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

input[type="color"] {
  padding: 2px;
}

.app-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 100vh;
}

.rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-right: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.78);
  backdrop-filter: blur(8px);
}

.brand-block {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 4vw, 70px);
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 58px);
}

.panel {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

.panel.compact {
  padding: 14px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-button,
.primary-button,
.icon-button,
.print-button,
.secondary-button {
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.text-button {
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 900;
}

.primary-button {
  width: 100%;
  padding: 10px 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--amber);
  box-shadow: 3px 3px 0 var(--ink);
}

.print-button {
  margin-left: auto;
  padding: 8px 12px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.secondary-button {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: var(--paper-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.secondary-button.danger-button {
  background: var(--red);
  color: white;
  border-color: var(--ink);
  text-shadow: 0 1px 0 rgba(25, 23, 22, 0.45);
}

.file-actions {
  display: inline-flex;
  gap: 8px;
}

.file-load {
  cursor: pointer;
}

.file-load input {
  display: none;
}

.icon-button {
  width: 38px;
  height: 38px;
  font-size: 20px;
  font-weight: 900;
}

button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.trade-filters,
.project-filters {
  display: grid;
  gap: 8px;
}

.trade-chip,
.project-chip {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.trade-chip.is-off,
.project-chip.is-off {
  opacity: 0.35;
}

.trade-name-input,
.project-name-input {
  min-width: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.trade-name-input:focus,
.project-name-input:focus {
  border-bottom-color: var(--ink);
  outline: 0;
}

.trade-color-input,
.project-color-input {
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: white;
}

.trade-actions,
.project-actions {
  display: inline-flex;
  gap: 4px;
}

.mini-button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.mini-button.danger {
  background: var(--red);
  color: white;
}

.trade-form,
.project-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px auto;
  gap: 8px;
  margin-top: 12px;
}

.trade-form input,
.project-form input {
  min-width: 0;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

.swatch {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
}

.count-pill {
  min-width: 28px;
  padding: 2px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}

.task-bin {
  min-height: 220px;
  padding: 14px;
}

.task-stack {
  display: grid;
  gap: 10px;
}

.task-card {
  padding: 10px;
  border: 2px solid var(--ink);
  border-top: 8px solid var(--project-color, var(--ink));
  border-radius: 8px;
  background: white;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.task-card:active {
  cursor: grabbing;
}

.task-card strong,
.bar-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.task-form {
  display: grid;
  gap: 10px;
}

.task-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.task-form input,
.task-form select {
  min-width: 0;
  padding: 9px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

.task-form .task-weekend-toggle {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.task-form .task-weekend-toggle input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  accent-color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 8px;
}

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

.topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 8px;
  min-width: 320px;
}

.metric {
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-strong);
}

.metric b {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.window-label {
  min-width: 230px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-strong);
  font-weight: 900;
  text-align: center;
}

.print-range {
  display: none;
}

.print-title,
.print-footer {
  display: none;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scale-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pivot-control {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-strong);
}

.pivot-button {
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-right: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pivot-button:last-child {
  border-right: 0;
}

.pivot-button.is-active {
  background: var(--ink);
  color: white;
}

.scale-readout {
  min-width: 58px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.timeline-wrap {
  overflow: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 6px 6px 0 var(--ink);
}

.timeline {
  min-width: calc(var(--label) + 112 * var(--cell));
}

.calendar-head,
.lane {
  display: grid;
  grid-template-columns: var(--label) repeat(112, var(--cell));
}

.calendar-head {
  position: sticky;
  top: 0;
  z-index: 8;
  background: var(--charcoal);
  color: white;
}

.corner,
.day-cell,
.lane-label,
.drop-cell {
  min-height: 42px;
  border-right: 1px solid rgba(25, 23, 22, 0.22);
  border-bottom: 1px solid rgba(25, 23, 22, 0.22);
}

.corner,
.day-cell {
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-cell {
  grid-column: span 4;
  min-width: calc(4 * var(--cell));
  border-right: 2px solid rgba(255, 255, 255, 0.34);
}

.day-cell.weekend {
  background: rgba(255, 255, 255, 0.08);
}

.lane-label {
  position: sticky;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-right: 2px solid var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.lane-label small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.lane-grid {
  position: relative;
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: repeat(112, var(--cell));
  min-height: var(--lane-height);
  grid-row: 1;
}

.drop-cell {
  min-height: var(--lane-height);
  background: rgba(255, 250, 240, 0.68);
}

.drop-cell.day-start {
  border-left: 2px solid rgba(25, 23, 22, 0.34);
}

.drop-cell.weekend {
  background: rgba(25, 23, 22, 0.045);
}

.drop-cell.drag-over {
  background: rgba(201, 128, 46, 0.25);
}

.gap {
  position: absolute;
  top: 12px;
  bottom: 12px;
  z-index: 1;
  border: 2px dashed rgba(187, 77, 59, 0.78);
  background: repeating-linear-gradient(
    -45deg,
    rgba(187, 77, 59, 0.12),
    rgba(187, 77, 59, 0.12) 7px,
    rgba(255, 250, 240, 0.26) 7px,
    rgba(255, 250, 240, 0.26) 14px
  );
  pointer-events: none;
}

.task-bar {
  position: absolute;
  top: calc((var(--lane-height) - var(--bar-height)) / 2);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--bar-height);
  min-width: 44px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-top: 8px solid var(--project-color, var(--ink));
  border-radius: 7px;
  color: white;
  cursor: grab;
  box-shadow: 3px 3px 0 rgba(25, 23, 22, 0.92);
  touch-action: none;
  user-select: none;
}

.task-bar.is-selected {
  z-index: 12;
}

.weekend-switch {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.weekend-switch input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--ink);
}

.weekend-toggle-button {
  position: relative;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  background: rgba(25, 23, 22, 0.22);
  color: white;
  cursor: pointer;
}

.weekend-toggle-button.is-on {
  background: rgba(255, 255, 255, 0.18);
}

.weekend-toggle-button svg {
  width: 17px;
  height: 17px;
}

.weekend-toggle-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weekend-dead-space {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  border-left: 2px solid rgba(25, 23, 22, 0.42);
  border-right: 2px solid rgba(25, 23, 22, 0.42);
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.72) 5px,
    rgba(25, 23, 22, 0.25) 5px,
    rgba(25, 23, 22, 0.25) 10px
  );
  opacity: 0.82;
  pointer-events: none;
}

.task-bar.has-weekend-dead-space .bar-copy,
.task-bar.has-weekend-dead-space .project-badge,
.task-bar.has-weekend-dead-space .weekend-toggle-button,
.task-bar.has-weekend-dead-space .resize-handle {
  position: relative;
  z-index: 2;
}

.task-card.is-touch-dragging,
.task-bar.is-touch-dragging {
  opacity: 0.72;
  transform: scale(0.98);
}

.project-badge {
  flex: 0 0 auto;
  max-width: 72px;
  padding: 5px 6px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: var(--project-color, var(--ink));
  color: white;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.task-bar.is-compact {
  justify-content: flex-start;
  gap: 4px;
  min-width: 28px;
  padding: 6px;
}

.task-bar.is-compact .bar-copy {
  max-width: 100%;
}

.task-bar.is-compact .bar-sub,
.task-bar.is-compact .project-badge,
.task-bar.is-compact .bar-weekend-toggle {
  display: none;
}

.task-bar.is-compact .bar-title {
  max-width: 100%;
  font-size: 12px;
}

.task-bar.is-compact .resize-handle {
  margin-left: auto;
  width: 8px;
}

.task-bar:active {
  cursor: grabbing;
}

.bar-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  justify-items: start;
}

.bar-title {
  max-width: 100%;
  padding: 2px 5px;
  border-radius: 4px;
  background: color-mix(in srgb, currentColor 12%, rgba(25, 23, 22, 0.65));
  font-size: 16px;
  font-weight: 900;
}

.bar-sub {
  max-width: 100%;
  padding: 2px 5px;
  border-radius: 4px;
  background: color-mix(in srgb, currentColor 10%, rgba(25, 23, 22, 0.60));
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.resize-handle {
  align-self: stretch;
  width: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.55);
  cursor: ew-resize;
}

.task-popover {
  position: absolute;
  left: 10px;
  top: calc(100% + 10px);
  z-index: 20;
  width: min(260px, calc(100vw - 40px));
  padding: 12px;
  border: 2px solid var(--ink);
  border-top: 8px solid var(--project-color, var(--ink));
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(25, 23, 22, 0.88);
  cursor: default;
  text-transform: none;
}

.task-popover::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  background: var(--paper-strong);
  transform: rotate(45deg);
}

.task-popover strong {
  display: block;
  max-width: calc(100% - 30px);
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.task-popover dl {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
}

.task-popover dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(25, 23, 22, 0.18);
}

.task-popover dt,
.task-popover dd {
  margin: 0;
}

.task-popover dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.task-popover dd {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.popover-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.popover-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.popover-project {
  display: inline-block;
  padding: 5px 6px;
  border: 2px solid var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.popover-weekend-toggle {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: 32px;
  gap: 6px;
  padding: 5px 8px;
  border-color: var(--ink);
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.popover-weekend-toggle.is-on {
  background: var(--ink);
  color: white;
}

.hidden {
  display: none;
}

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .rail {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .metrics {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --label: 132px;
    --cell: 16px;
  }

  .rail,
  .workspace {
    padding: 14px;
  }

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

@page {
  size: 17in 11in landscape;
  margin: 0.25in;
}

@media print {
  :root {
    --paper: #ffffff;
    --paper-strong: #ffffff;
    --cell: 0.132in;
    --label: 1.35in;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    width: auto;
    min-height: auto;
    overflow: visible;
    background: #ffffff;
  }

  body {
    color: #111111;
  }

  .app-shell {
    display: block;
    min-height: auto;
  }

  .rail,
  .toolbar,
  .resize-handle {
    display: none;
  }

  .workspace {
    width: 100%;
    padding: 0;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 3.25in;
    align-items: end;
    gap: 0.18in;
    padding: 0 0 0.08in;
    border-bottom: 2px solid #111111;
  }

  .topbar .eyebrow {
    margin-bottom: 0.03in;
    color: #555555;
    font-size: 8pt;
  }

  h2 {
    display: none;
  }

  h2.print-title {
    display: block;
    max-width: none;
    font-size: 24pt;
    line-height: 0.9;
  }

  .print-range {
    display: block;
    margin: 0.04in 0 0;
    color: #333333;
    font-size: 10pt;
    font-weight: 900;
    text-transform: uppercase;
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
    gap: 0.06in;
  }

  .metric {
    padding: 0.045in 0.055in;
    border: 1.5px solid #111111;
    border-radius: 0;
    background: #ffffff;
  }

  .metric b {
    font-size: 13pt;
  }

  .metric span {
    color: #333333;
    font-size: 6.5pt;
  }

  .timeline-wrap {
    margin-top: 0.08in;
    overflow: visible;
    border: 2px solid #111111;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .timeline {
    min-width: calc(var(--label) + 112 * var(--cell));
    width: calc(var(--label) + 112 * var(--cell));
  }

  .calendar-head,
  .lane {
    grid-template-columns: var(--label) repeat(112, var(--cell));
  }

  .calendar-head {
    position: static;
    background: #1f1f1f;
    color: #ffffff;
  }

  .corner,
  .day-cell,
  .lane-label,
  .drop-cell {
    min-height: 0.34in;
    border-color: rgba(17, 17, 17, 0.32);
  }

  .corner,
  .day-cell {
    font-size: 6.5pt;
    line-height: 1.05;
  }

  .day-cell {
    min-width: calc(4 * var(--cell));
    border-right-color: rgba(255, 255, 255, 0.55);
  }

  .lane-label {
    position: static;
    gap: 0.05in;
    padding: 0.08in;
    border-right: 2px solid #111111;
    background: #ffffff;
    font-size: 10pt;
  }

  .lane-label small {
    color: #444444;
    font-size: 7.2pt;
  }

  .swatch {
    width: 0.11in;
    height: 0.11in;
  }

  .lane-grid,
  .drop-cell {
    min-height: 1.2in;
  }

  .drop-cell {
    background: #ffffff;
  }

  .drop-cell.weekend {
    background: #eeeeee;
  }

  .drop-cell.day-start {
    border-left-color: rgba(17, 17, 17, 0.58);
  }

  .gap {
    top: 0.12in;
    bottom: 0.12in;
    border: 1px dashed rgba(150, 57, 45, 0.48);
    background: repeating-linear-gradient(
      -45deg,
      rgba(150, 57, 45, 0.07),
      rgba(150, 57, 45, 0.07) 4px,
      rgba(255, 255, 255, 0.4) 4px,
      rgba(255, 255, 255, 0.4) 8px
    );
  }

  .task-bar {
    top: 0.26in;
    height: 0.56in;
    min-width: 0.08in;
    padding: 0.08in 0.06in;
    border: 1.5px solid #111111;
    border-radius: 0;
    box-shadow: none;
  }

  .bar-title {
    font-size: 8.2pt;
  }

  .bar-sub {
    font-size: 6.4pt;
  }

  .print-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.2in;
    margin-top: 0.12in;
    padding-top: 0.08in;
    border-top: 1.5px solid #111111;
    color: #333333;
    font-size: 8pt;
    font-weight: 800;
    text-transform: uppercase;
  }

  .print-footer b {
    color: #111111;
  }
}
