.demo-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.07);
}

.demo-panel h3,
.move-plan-view h3,
.quote-review-panel h3 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.demo-muted {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.45;
}

.demo-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.demo-kpi {
  padding: 12px;
  border: 1px solid #e6eaed;
  border-radius: 16px;
  background: #f8faf9;
}

.demo-kpi strong {
  display: block;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.demo-kpi span {
  display: block;
  margin-top: 6px;
  color: #65717a;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-segment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.demo-chip,
.demo-doc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid #d9e1dd;
  border-radius: 12px;
  background: #f7f8f7;
  color: #1f2937;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.demo-chip.active {
  border-color: #15965f;
  background: #e8f8f1;
  color: #08764f;
}

.demo-chip-button {
  font: inherit;
  cursor: pointer;
}

.demo-field {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.demo-field label {
  color: #5f6670;
  font-size: 12px;
  font-weight: 850;
}

.demo-range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.demo-range-row output {
  min-width: 54px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.demo-field input[type="range"] {
  width: 100%;
  accent-color: #15965f;
}

.quote-review-sheet input[type="range"],
.quote-review-sheet .demo-quote-slider {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.quote-review-sheet input[type="range"] {
  cursor: grab;
}

.quote-review-sheet input[type="range"]:active {
  cursor: grabbing;
}

.demo-quote-slider {
  --quote-slider-pct: 0%;
  position: relative;
  width: 100%;
  height: 44px;
  margin-left: 7px;
  border: 0;
  background: transparent;
  cursor: grab;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.demo-quote-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #31865a 0 var(--quote-slider-pct), #e1e4e2 var(--quote-slider-pct) 100%);
}

.demo-quote-slider::after {
  content: "";
  position: absolute;
  left: var(--quote-slider-pct);
  top: 50%;
  width: 28px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 2px 7px rgba(17, 24, 39, 0.18);
  transform: translate(-50%, -50%);
}

.demo-quote-slider:active,
.demo-quote-slider.is-dragging {
  cursor: grabbing;
}

.demo-quote-slider:focus-visible::after {
  box-shadow: 0 0 0 4px rgba(21, 150, 95, 0.16), 0 2px 7px rgba(17, 24, 39, 0.18);
}

.demo-task {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #e6eaed;
  border-radius: 16px;
  background: #fbfcfb;
}

.demo-phase-tabs {
  display: flex;
  gap: 8px;
  margin: 8px 0 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.demo-phase-tab {
  flex: 0 0 auto;
  min-width: 118px;
  min-height: 50px;
  padding: 9px 12px;
  border: 1px solid #dfe5e1;
  border-radius: 14px;
  background: #fff;
  color: #334155;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.demo-phase-tab span,
.demo-phase-tab small {
  display: block;
  line-height: 1.1;
}

.demo-phase-tab span {
  font-size: 13px;
  font-weight: 950;
}

.demo-phase-tab small {
  margin-top: 5px;
  color: #64717b;
  font-size: 11px;
  font-weight: 850;
}

.demo-phase-tab.active {
  border-color: #15965f;
  background: #e8f8f1;
  color: #08764f;
}

.demo-phase-tab.active small {
  color: #08764f;
}

.demo-phase-review {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e4ebe7;
  border-radius: 18px;
  background: #fff;
}

.demo-phase-review-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.demo-phase-review h4 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
}

.demo-task-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.demo-task-top strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.demo-task-top span {
  color: #15965f;
  font-size: 13px;
  font-weight: 900;
}

.demo-task-hours {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f8f1;
  border: 1px solid rgba(21,150,95,.18);
  line-height: 1;
  white-space: nowrap;
}

.demo-toggle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 10px;
}

.demo-toggle {
  min-height: 36px;
  border: 1px solid #dfe5e1;
  border-radius: 12px;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.demo-toggle.active {
  border-color: #15965f;
  background: #e8f8f1;
  color: #08764f;
}

.demo-toggle.active.danger {
  border-color: #f2b7b7;
  background: #fff2f2;
  color: #d93636;
}

.demo-recommendation {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #e8f8f1;
  color: #08764f;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.demo-drive-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-mid);
  font-size: 12px;
  line-height: 1.35;
}

.demo-link-button {
  border: none;
  background: none;
  color: #08764f;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0;
  cursor: pointer;
}

.demo-doc-list,
.move-package-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.demo-doc-row,
.move-package-card {
  padding: 12px;
  border: 1px solid #e6eaed;
  border-radius: 16px;
  background: #fbfcfb;
}

.demo-doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.demo-drive-folder-card {
  border-color: #cdebdc;
  background: #eefaf4;
}

.demo-doc-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #15965f;
  border-radius: 10px;
  background: #e8f8f1;
  color: #08764f;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.demo-doc-view-button:active,
.demo-doc-view-button.is-busy {
  transform: scale(.96);
  background: #d6f4e6;
  border-color: #08764f;
  box-shadow: 0 0 0 3px rgba(21,150,95,.12);
}

.demo-doc-view-button:disabled,
.demo-doc-view-button.is-busy {
  opacity: .75;
  cursor: wait;
}

.demo-action-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.demo-doc-title {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.demo-doc-title .demo-action-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: #15965f;
}

.demo-doc-title span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.demo-doc-view-button:focus-visible,
.move-package-list-card:focus-visible {
  outline: 3px solid rgba(21, 150, 95, 0.22);
  outline-offset: 2px;
}

.demo-doc-view {
  display: grid;
  gap: 8px;
}

.demo-doc-view-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e6eaed;
  border-radius: 14px;
  background: #fbfcfb;
}

.demo-doc-view-row span {
  color: #111827;
  font-size: 13px;
  font-weight: 850;
}

.demo-doc-view-row strong {
  color: #08764f;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 12px;
}

.demo-table th,
.demo-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #e6eaed;
  text-align: left;
  vertical-align: top;
}

.demo-table th {
  color: #64717b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.move-plan-view {
  max-width: 430px;
  min-height: 100dvh;
  margin: 0 auto;
  padding: var(--page-top-offset, 28px) 24px 92px;
  background: #f7f7f7;
}

.move-plan-view .page-header {
  text-align: center;
}

.move-plan-topbar {
  position: relative;
  width: 100%;
}

#movePlanView .move-plan-topbar .page-brand-lockup {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.move-tabs {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 7px;
  margin: 16px 0;
}

.move-tabs button {
  min-height: 40px;
  border: 1px solid #dfe5e1;
  border-radius: 14px;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 7px;
  min-width: 0;
  white-space: nowrap;
}

.move-tabs button > span:first-child {
  min-width: 0;
  white-space: nowrap;
}

.move-tabs button.active {
  border-color: #15965f;
  background: #15965f;
  color: #fff;
}

.move-tabs button.has-work:not(.active) {
  border-color: rgba(21,150,95,.34);
  background: #f0fbf6;
  color: #08764f;
}

.move-tab-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #15965f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
}

.move-tabs button.active .move-tab-badge {
  background: #fff;
  color: #08764f;
}

.move-package-list-card {
  width: 100%;
  display: block;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.move-package-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.move-package-chevron {
  width: 24px;
  height: 24px;
  color: #69737f;
  flex: 0 0 auto;
}

#quoteReviewOverlay.center-modal-overlay {
  padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
}

#moveOutputOverlay.center-modal-overlay {
  padding: max(20px, env(safe-area-inset-top)) 14px max(20px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.edit-sheet.center-modal-sheet.quote-review-sheet {
  width: min(540px, calc(100vw - 16px));
  max-width: 540px;
  max-height: calc(100dvh - 16px);
  padding: 22px 18px 20px;
  transform: none;
}

.edit-sheet.center-modal-sheet.move-output-sheet {
  display: flex;
  flex-direction: column;
  width: min(760px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  height: min(780px, calc(100dvh - 40px));
  max-height: calc(100dvh - 40px);
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  transform: none;
}

.move-output-sheet.is-single-page {
  height: min(var(--move-output-single-page-height, 780px), calc(100dvh - 40px));
}

.move-output-pdf-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  max-width: 100%;
  min-width: 0;
}

.move-output-pdf-actions {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.move-output-pdf-actions .demo-doc-view-button {
  flex: 0 1 auto;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.move-output-pdf-toolbar .sheet-close {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: auto;
}

.move-output-pdf-shell {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
  border: 0;
  border-radius: 0;
  background: #050505;
}

.move-output-pdf-shell.is-loading {
  overflow: hidden;
}

.move-output-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.move-output-page-count {
  position: sticky;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: max-content;
  margin: 10px 0 -58px 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111827;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(17,24,39,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.move-output-page {
  width: 100%;
  margin: 0 auto 22px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.move-output-pdf-shell.is-ready .move-output-page-count,
.move-output-pdf-shell.is-ready .move-output-page {
  opacity: 1;
  transform: translateY(0);
}

.move-output-page canvas {
  display: block;
  max-width: 100%;
  height: auto !important;
  background: #fff;
  box-shadow: none;
}

.move-output-pdf-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  opacity: 1;
  transition: opacity .14s ease;
}

.move-output-pdf-loading::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.22);
  border-top-color: rgba(255,255,255,.82);
  animation: moveOutputLoadingSpin .72s linear infinite;
}

@keyframes moveOutputLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .move-output-page-count,
  .move-output-page,
  .move-output-pdf-loading {
    transition: none;
  }

  .move-output-pdf-loading::before {
    animation: none;
  }
}

.move-output-pdf-fallback {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 0;
  color: #64717b;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.quote-review-panel {
  display: grid;
  gap: 0;
}

.quote-review-job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 2px;
}

.quote-review-status-chip {
  max-width: 46%;
  flex: 0 1 auto;
  overflow-wrap: anywhere;
}

@media (max-width: 420px) {
  #quoteReviewOverlay.center-modal-overlay {
    padding: max(6px, env(safe-area-inset-top)) 6px max(6px, env(safe-area-inset-bottom));
  }

  #moveOutputOverlay.center-modal-overlay {
    padding: max(4px, env(safe-area-inset-top)) 4px max(4px, env(safe-area-inset-bottom));
  }

  .edit-sheet.center-modal-sheet.quote-review-sheet {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
    padding: 18px 12px 16px;
    border-radius: 24px !important;
  }

  .quote-review-job-head {
    display: grid;
    gap: 10px;
  }

  .quote-review-status-chip {
    max-width: 100%;
    justify-self: start;
  }

  .quote-review-sheet .demo-task,
  .quote-review-sheet .demo-phase-review {
    padding: 10px;
  }

  .quote-review-sheet .demo-segment {
    gap: 6px;
  }

  .quote-review-sheet .demo-chip {
    padding: 8px 6px;
    font-size: 11px;
  }

  .quote-review-sheet .demo-range-row {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .quote-review-sheet .demo-range-row output {
    min-width: 42px;
  }

  .quote-review-sheet .demo-recommendation {
    font-size: 17px;
  }

  .quote-review-sheet .btn-group:not(.quote-review-actions) {
    flex-direction: column;
  }

  .edit-sheet.center-modal-sheet.move-output-sheet {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    height: calc(100dvh - 36px);
    max-height: calc(100dvh - 36px);
    padding: 8px;
    border-radius: 22px !important;
  }

  .move-output-pdf-toolbar {
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .move-output-pdf-actions {
    gap: 6px;
    flex: 1 1 auto;
    max-width: calc(100% - 44px);
  }

  .move-output-pdf-actions .demo-doc-view-button {
    flex: 0 1 auto;
    min-height: 32px;
    padding: 6px 7px;
    font-size: 11px;
  }

  .move-output-pdf-toolbar .sheet-close {
    flex-basis: 34px;
    margin-left: auto;
  }

  .move-output-pdf-shell {
    min-height: 0;
    border-radius: 0;
  }

}

@media (max-width: 360px) {
  .quote-review-sheet .demo-segment {
    grid-template-columns: 1fr;
  }
}

.move-output-summary {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.move-plan-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.move-plan-detail-actions.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.move-plan-detail-actions .btn {
  min-height: 58px;
}

.demo-panel,
.demo-task,
.demo-kpi,
.demo-doc-row,
.demo-doc-title,
.move-package-card,
.move-output-card,
.move-output-header,
.move-output-phase-title,
.move-tabs button,
.placeholder-gantt-row,
.placeholder-calendar-day,
.placeholder-plan-section,
.placeholder-page-header {
  min-width: 0;
}

.demo-panel h3,
.demo-muted,
.demo-task-top strong,
.demo-doc-title span,
.move-package-card h3,
.move-output-heading,
.move-output-phase-title,
.move-output-card strong,
.move-output-card span,
.placeholder-gantt-row span,
.placeholder-calendar-day strong,
.placeholder-calendar-day small,
.placeholder-plan-section span,
.placeholder-page-header span {
  white-space: normal;
  overflow-wrap: anywhere;
  text-overflow: clip;
}

.move-output-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.move-output-heading {
  color: #5f6670;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.move-output-tabs {
  display: flex;
  flex-wrap: wrap;
  overflow-x: visible;
  gap: 6px;
  padding-bottom: 0;
}

.move-output-tabs .demo-phase-tab {
  flex: 1 1 calc(33.333% - 4px);
  max-width: calc(33.333% - 4px);
  min-width: 0;
  min-height: 42px;
  padding: 7px 5px;
  text-align: center;
}

.move-output-tabs .demo-phase-tab span,
.move-output-tabs .demo-phase-tab small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.move-output-tabs .demo-phase-tab span {
  font-size: 11px;
}

.move-output-tabs .demo-phase-tab small {
  margin-top: 3px;
  font-size: 9px;
}

.move-output-review-button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 14px;
  white-space: nowrap;
}

.move-output-phase {
  display: grid;
  gap: 8px;
}

.move-output-phase-title {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.move-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.move-output-card {
  min-width: 0;
  padding: 10px;
  border: 1px solid #e1e8e4;
  border-radius: 14px;
  background: #f8faf9;
}

.move-output-card span {
  display: block;
  color: #64717b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.move-output-card strong {
  display: block;
  margin-top: 5px;
  color: #08764f;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.05;
}

.move-output-card small {
  display: block;
  margin-top: 4px;
  color: #64717b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.move-output-preview {
  display: grid;
  gap: 12px;
}

.placeholder-doc-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #cfe3da;
  border-radius: 999px;
  background: #edf9f3;
  color: #08764f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.placeholder-page,
.placeholder-plan-section,
.placeholder-calendar-day,
.placeholder-gantt {
  border: 1px solid #e1e8e4;
  border-radius: 14px;
  background: #fbfcfb;
}

.placeholder-page {
  padding: 14px;
}

.placeholder-page-header,
.placeholder-metric-row,
.placeholder-lines > div,
.placeholder-gantt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.placeholder-page-header {
  padding-bottom: 12px;
  border-bottom: 1px solid #e5ebe8;
}

.placeholder-page-header strong,
.placeholder-plan-section strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.placeholder-page-header span,
.placeholder-plan-section span {
  color: #64717b;
  font-size: 12px;
  font-weight: 750;
}

.placeholder-metric-row {
  margin: 12px 0;
}

.placeholder-metric-row > div {
  flex: 1;
  min-width: 0;
  padding: 10px;
  border-radius: 12px;
  background: #eef8f3;
}

.placeholder-metric-row strong {
  display: block;
  color: #08764f;
  font-size: 18px;
  font-weight: 950;
}

.placeholder-metric-row span,
.placeholder-lines span,
.placeholder-calendar-day span,
.placeholder-calendar-day small,
.placeholder-gantt-row span,
.placeholder-gantt-row strong {
  color: #64717b;
  font-size: 11px;
  font-weight: 850;
}

.placeholder-lines {
  display: grid;
  gap: 8px;
}

.placeholder-lines > div {
  padding: 10px;
  border: 1px solid #e5ebe8;
  border-radius: 12px;
  background: #fff;
}

.placeholder-lines strong {
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.placeholder-plan-section {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.placeholder-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.placeholder-calendar-day {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.placeholder-calendar-day strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
}

.placeholder-gantt {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.placeholder-gantt-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 34px;
}

.placeholder-gantt-row div {
  min-height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebe8;
}

.placeholder-gantt-row i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #0b8a62;
}
