#os-pm-prototype {
  --os-bg: light-dark(#f5f6f5, #151b1b);
  --os-paper: light-dark(#fff, #202828);
  --os-ink: light-dark(#1d3030, #e6ece9);
  --os-muted: light-dark(#657574, #abbab5);
  --os-line: light-dark(#dce3df, #3d4c48);
  --os-green: light-dark(#166854, #8fd4b8);
  --os-soft: light-dark(#e7f2ed, #263e34);
  --os-warn: light-dark(#946000, #f6ca76);
  --os-bad: light-dark(#a53733, #ffaaa2);
  font:
    14px/1.5 Arial,
    sans-serif;
  color: var(--os-ink);
  background: var(--os-bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  color-scheme: light dark;
  min-height: 720px;
}
#os-pm-prototype * {
  box-sizing: border-box;
}
#os-pm-prototype button,
#os-pm-prototype input,
#os-pm-prototype select,
#os-pm-prototype textarea {
  font: inherit;
}
#os-pm-prototype button {
  cursor: pointer;
  background: var(--os-paper);
  color: var(--os-ink);
  border: 1px solid var(--os-line);
  border-radius: 7px;
  padding: 8px 12px;
  white-space: nowrap;
}
#os-pm-prototype button:hover:not(:disabled) {
  background: var(--os-soft);
}
#os-pm-prototype button:disabled {
  opacity: 0.45;
  cursor: default;
}
#os-pm-prototype button:focus-visible,
#os-pm-prototype input:focus-visible,
#os-pm-prototype select:focus-visible,
#os-pm-prototype textarea:focus-visible {
  outline: 3px solid var(--os-green);
  outline-offset: 2px;
}
#os-pm-prototype .os-primary {
  background: var(--os-green);
  color: light-dark(#fff, #11291e);
  border-color: var(--os-green);
}
#os-pm-prototype .os-link {
  border: 0;
  background: transparent;
  color: var(--os-green);
  padding: 5px 0;
  white-space: normal;
  text-align: left;
}
#os-pm-prototype .os-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 25px;
  background: var(--os-paper);
  border-bottom: 1px solid var(--os-line);
}
#os-pm-prototype .os-brand {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
#os-pm-prototype .os-brand span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  display: block;
  color: var(--os-muted);
}
#os-pm-prototype .os-toolbar {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
#os-pm-prototype .os-demo {
  font-size: 11px;
  color: var(--os-muted);
  margin-right: 8px;
}
#os-pm-prototype .os-project {
  padding: 23px 25px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#os-pm-prototype h1 {
  font-size: 25px;
  line-height: 1.2;
  margin: 3px 0 8px;
  letter-spacing: -0.5px;
}
#os-pm-prototype h2 {
  font-size: 19px;
  margin: 0;
}
#os-pm-prototype h3 {
  font-size: 15px;
  margin: 0 0 12px;
}
#os-pm-prototype .os-eyebrow {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--os-green);
}
#os-pm-prototype .os-muted {
  color: var(--os-muted);
  font-size: 12px;
}
#os-pm-prototype .os-nav {
  display: flex;
  gap: 20px;
  padding: 0 25px;
  border-bottom: 1px solid var(--os-line);
  overflow: auto;
}
#os-pm-prototype .os-nav button {
  border: 0;
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--os-muted);
}
#os-pm-prototype .os-nav button[aria-current="page"] {
  color: var(--os-green);
  border-bottom: 3px solid var(--os-green);
  font-weight: 700;
}
#os-pm-prototype main {
  padding: 23px 25px 30px;
  min-height: 475px;
}
#os-pm-prototype .os-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  flex-wrap: wrap;
}
#os-pm-prototype .os-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
#os-pm-prototype .os-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 19px;
}
#os-pm-prototype .os-metric {
  background: var(--os-paper);
  padding: 17px 19px;
  border: 1px solid var(--os-line);
  border-radius: 9px;
}
#os-pm-prototype .os-metric strong {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 500;
  display: block;
  margin: 6px 0;
}
#os-pm-prototype .os-panel {
  background: var(--os-paper);
  border: 1px solid var(--os-line);
  border-radius: 9px;
  padding: 18px;
  margin: 15px 0;
}
#os-pm-prototype .os-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
#os-pm-prototype .os-split > .os-panel {
  margin-top: 0;
}
#os-pm-prototype .os-table-wrap {
  overflow: auto;
  background: var(--os-paper);
  border: 1px solid var(--os-line);
  border-radius: 9px;
}
#os-pm-prototype table {
  color: var(--os-ink);
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}
#os-pm-prototype th {
  text-align: left;
  color: var(--os-muted);
  font-weight: 500;
  background: var(--os-bg);
  padding: 11px 12px;
  white-space: nowrap;
}
#os-pm-prototype td {
  padding: 14px 12px;
  border-top: 1px solid var(--os-line);
  vertical-align: top;
}
#os-pm-prototype td strong {
  font-size: 13px;
  font-weight: 600;
}
#os-pm-prototype .os-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
#os-pm-prototype .os-pill {
  display: inline-block;
  border-radius: 5px;
  padding: 3px 7px;
  background: var(--os-soft);
  color: var(--os-green);
  font-size: 11px;
  white-space: nowrap;
}
#os-pm-prototype .os-warn {
  color: var(--os-warn);
}
#os-pm-prototype .os-negative {
  color: var(--os-bad);
}
#os-pm-prototype .os-flag {
  padding: 12px 14px;
  border-left: 3px solid var(--os-warn);
  background: var(--os-paper);
  margin: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
#os-pm-prototype .os-list-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--os-line);
}
#os-pm-prototype .os-list-row:last-child {
  border: 0;
}
#os-pm-prototype .os-meter {
  height: 5px;
  background: var(--os-line);
  border-radius: 3px;
  margin-top: 9px;
  overflow: hidden;
}
#os-pm-prototype .os-meter span {
  display: block;
  height: 100%;
  background: var(--os-green);
}
#os-pm-prototype .os-foot {
  padding: 12px 25px;
  border-top: 1px solid var(--os-line);
  background: var(--os-paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 12px;
}
#os-pm-prototype dialog {
  width: min(680px, calc(100% - 24px));
  max-height: 85vh;
  border: 1px solid var(--os-line);
  border-radius: 12px;
  background: var(--os-paper);
  color: var(--os-ink);
  padding: 0;
  box-shadow: 0 20px 70px #0003;
}
#os-pm-prototype dialog::backdrop {
  background: #12282466;
}
#os-pm-prototype .os-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 22px;
  border-bottom: 1px solid var(--os-line);
  position: sticky;
  top: 0;
  background: var(--os-paper);
  z-index: 2;
}
#os-pm-prototype #os-dialog-body {
  padding: 20px 22px;
}
#os-pm-prototype .os-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
#os-pm-prototype label {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
#os-pm-prototype input,
#os-pm-prototype select,
#os-pm-prototype textarea {
  width: 100%;
  display: block;
  margin-top: 5px;
  padding: 9px 10px;
  border: 1px solid var(--os-line);
  border-radius: 6px;
  background: var(--os-paper);
  color: var(--os-ink);
  min-width: 0;
}
#os-pm-prototype textarea {
  min-height: 78px;
  resize: vertical;
}
#os-pm-prototype .os-wide {
  grid-column: 1/-1;
}
#os-pm-prototype .os-form-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 22px;
}
#os-pm-prototype .os-error {
  color: var(--os-bad);
  margin: 12px 0;
  font-size: 12px;
}
#os-pm-prototype .os-inline {
  display: flex;
  gap: 8px;
  align-items: end;
}
#os-pm-prototype .os-inline > * {
  flex: 1;
}
#os-pm-prototype .os-inline > button {
  flex: 0;
}
#os-pm-prototype .os-check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 400;
}
#os-pm-prototype .os-check input {
  width: 16px;
  margin: 0;
}
#os-pm-prototype .os-doc {
  padding: 22px;
  border: 1px solid var(--os-line);
  background: var(--os-bg);
  font:
    13px/1.7 Georgia,
    serif;
}
#os-pm-prototype #os-toast {
  position: absolute;
  bottom: 65px;
  left: 25px;
  max-width: 80%;
  background: var(--os-ink);
  color: var(--os-paper);
  padding: 11px 15px;
  border-radius: 8px;
  display: none;
  z-index: 5;
}
#os-pm-prototype .os-empty {
  padding: 28px;
  text-align: center;
  color: var(--os-muted);
}
#os-pm-prototype .os-density-compact td {
  padding-top: 9px;
  padding-bottom: 9px;
}
@media (max-width: 700px) {
  #os-pm-prototype .os-top {
    align-items: flex-start;
    flex-direction: column;
  }
  #os-pm-prototype .os-demo {
    width: 100%;
  }
  #os-pm-prototype .os-project {
    align-items: flex-start;
    flex-direction: column;
  }
  #os-pm-prototype .os-metrics {
    grid-template-columns: 1fr;
  }
  #os-pm-prototype .os-split {
    grid-template-columns: 1fr;
  }
  #os-pm-prototype main {
    padding: 18px 14px;
  }
  #os-pm-prototype .os-nav {
    gap: 18px;
    padding: 0 14px;
  }
  #os-pm-prototype .os-fields {
    grid-template-columns: 1fr;
  }
  #os-pm-prototype .os-foot {
    padding: 12px 14px;
  }
  #os-pm-prototype h1 {
    font-size: 22px;
  }
}
body {
  margin: 0;
  background: #f4f6f8;
}
#os-pm-prototype .os-project-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: white;
  border-bottom: 1px solid #dbe3ea;
}
#os-project-picker {
  max-width: min(80vw, 760px);
  padding: 9px;
  border: 1px solid #bac7d2;
  border-radius: 6px;
  background: white;
  font: inherit;
}
#invoice-total {
  display: block;
  margin-top: 14px;
}
#os-pm-prototype a {
  color: #155774;
  text-underline-offset: 3px;
}
#os-pm-prototype .os-demo {
  font-size: 13px;
}
#os-pm-prototype :focus-visible {
  outline: 3px solid #1688aa;
  outline-offset: 3px;
}
#os-pm-prototype .os-muted {
  overflow-wrap: anywhere;
}
#os-pm-prototype .os-toolbar {
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  #os-pm-prototype .os-top {
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
  }
  #os-pm-prototype .os-project {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  #os-pm-prototype .os-fields {
    grid-template-columns: 1fr;
  }
  #os-pm-prototype .os-wide {
    grid-column: auto;
  }
  #os-pm-prototype .os-foot {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
}
