.spreadsheet,
.exit-disguise {
  display: none;
}

#disguiseButton {
  display: none;
}

.is-disguised {
  background: #fff;
}

.is-disguised .app-shell {
  width: calc(100% - 70px);
  max-width: none;
  padding-top: 42px;
}

.is-disguised .topbar,
.is-disguised .tabs,
.is-disguised .view:not(#ledger),
.is-disguised #ledger .section-heading,
.is-disguised #ledger .lead,
.is-disguised #ledger .ledger-grid,
.is-disguised #ledger::before,
.is-disguised .ledger-grid::after {
  display: none;
}

.is-disguised #ledger,
.is-disguised .spreadsheet {
  display: block;
}

.spreadsheet {
  overflow: auto;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.sheet-titlebar {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #d9d9d9;
  background: #f8fbf8;
  color: #217346;
  font-size: 14px;
  font-weight: 700;
}

.sheet-titlebar span + span {
  color: #879187;
  font-size: 12px;
  font-weight: 400;
}

.spreadsheet table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font: 13px "DM Sans", sans-serif;
  text-align: left;
}

.spreadsheet th {
  padding: 12px 16px;
  background: #f5f5f5;
  color: #333;
  font-weight: 600;
}

.spreadsheet td {
  padding: 12px 16px;
  border-top: 1px solid #e8e8e8;
  color: #424242;
}

.spreadsheet tr:hover td {
  background: #f8fcf6;
}

.priority {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}

.priority.high { background: #ffe2df; color: #a23729; }
.priority.medium { background: #fff3ca; color: #956d00; }
.priority.low { background: #e4f2e6; color: #287538; }

.sheet-progress {
  display: inline-block;
  width: 100px;
  height: 6px;
  margin-right: 8px;
  border-radius: 4px;
  background: #e7ece7;
  vertical-align: middle;
}

.sheet-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #62a755;
}

.is-disguised .exit-disguise {
  display: flex;
  position: fixed;
  top: 24px;
  right: 28px;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background: #fff;
  color: #535353;
  font-size: 12px;
}

.is-disguised .exit-disguise span {
  font-size: 17px;
  line-height: 10px;
}

@media (max-width: 650px) {
  .is-disguised .app-shell {
    width: calc(100% - 28px);
    padding-top: 52px;
  }

  .is-disguised .exit-disguise {
    top: 10px;
    right: 14px;
  }
}
