:root {
  --app-bg: transparent;
  --surface-bg: #ffffff;
  --surface-bg-2: #f9fafb;
  --surface-hover: rgba(0, 0, 0, 0.04);
  --input-bg: #ffffff;
  --text-primary: #212b36;
  --text-muted: #52606f;
  --muted: #c8c8c8;
  --border-subtle: rgba(145, 158, 171, 0.20);
  --border-strong: rgba(145, 158, 171, 0.40);
  --overlay-backdrop: rgba(0, 0, 0, 0.5);
  --toast-bg-success: #e6faf2;
  --toast-bg-danger: #ffeded;
  --toast-bg-warning: #fff5e9;
  --toast-bg-info: #edf4fb;
  --je-receipt: #047857;
  --je-invoice: #1d4ed8;
  --je-offer: #b45309;
  --je-credit-note: #6d28d9;
  --je-exit-credit: #b91c1c;
  --je-expense: #c2410c;
  --je-delivery-note: #0369a1;
  --je-order-confirmation: #0f766e;
  --je-shop-purchase: #7e22ce;
  --je-recurring: #4338ca;
  --je-default: #4b5563;
  --je-state-upcoming: #1d4ed8;
  --je-state-overdue: #b91c1c;
  --je-state-paid: #047857;
  --je-state-cancelled: #6b7280;
  --je-state-irrecoverable: #b45309;
  --je-state-dubious: #991b1b;
}

.bg-primary {
  background: var(--primary, #0d6a87);
}

.bg-secondary {
  background: var(--secondary, #F39200);
}

.bg-success {
  background: var(--success, #00C278);
}

.bg-danger {
  background: var(--danger, #c92a2a);
}

.bg-info {
  background: var(--info, #2e6db0);
}

.bg-warning {
  background: var(--warning, #feb05b);
}

.bg-light {
  background: var(--light, #cccccc);
}

.bg-dark {
  background: var(--dark, #212B36);
}

.bg-muted {
  background: var(--muted, #c8c8c8);
}

.text-primary {
  color: var(--primary, #0d6a87);
}

.text-secondary {
  color: var(--secondary, #F39200);
}

.text-success {
  color: var(--success, #00C278);
}

.text-danger {
  color: var(--danger, #c92a2a);
}

.text-info {
  color: var(--info, #2e6db0);
}

.text-warning {
  color: var(--warning, #feb05b);
}

.text-light {
  color: var(--light, #cccccc);
}

.text-dark {
  color: var(--dark, #212B36);
}

.text-muted {
  color: var(--muted, #c8c8c8);
}

.documentationOverview {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  overflow: hidden;
  height: 100%;
  padding-bottom: 8px;
}
.documentationOverview .documentationOverviewMenu {
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
}
.documentationOverview .documentationOverviewMenu .tocMenu {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
}
.documentationOverview .documentationOverviewContent {
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.tocMenu .tocItem {
  display: flex;
  padding: 1px 4px;
}
.tocMenu .tocItem .content {
  flex-grow: 1;
}
.tocMenu .tocItem .actions {
  padding-left: 8px;
  display: flex;
  visibility: hidden;
}
.tocMenu .tocItem .actions .btn {
  display: flex;
  min-width: 0;
}
.tocMenu .tocItem:hover {
  background: var(--gray-200, #f5f5f5);
}
.tocMenu .tocItem:hover .actions {
  visibility: visible;
}
.tocMenu .tocItem.isActive .actions {
  visibility: visible;
}
.tocMenu .tocItem.isActive .content .btn {
  font-weight: bold;
  text-decoration: underline;
}

.officeScreenContainer {
  display: flex;
  flex-direction: column;
  justify-items: center;
  border: 1px solid var(--gray-200, #f5f5f5);
  overflow: hidden;
  max-height: 100%;
  height: 100%;
}
.officeScreenContainer.officeScreenImageFullScreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--gray-800, #212B36);
  border: none;
  margin: 0;
}
.officeScreenContainer.officeScreenImageFullScreen .officeScreenContainerTools {
  border-radius: 0;
}

.officeScreenContainerTools {
  flex-shrink: 0;
  padding: 4px;
  background: var(--gray-200, #f5f5f5);
  width: 100%;
  border-radius: 8px 8px 0 0;
  display: flex;
}
.officeScreenContainerTools .officeIcon {
  font-size: 20px;
}

.officeScreenImageContainer {
  flex: 1;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: var(--gray-200, #f5f5f5);
  position: relative;
}
.officeScreenImageContainer .officeScreenLock {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-items: center;
  justify-content: center;
  align-items: center;
}
.officeScreenImageContainer .officeScreenLock:has(.btn:hover) {
  background: transparent;
}
.officeScreenImageContainer .officeScreenImage {
  max-width: 100%;
  max-height: 100%;
}

.officeScreenContentContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

.officeScreenContent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.remote-log-container {
  display: none;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .remote-log-container {
    position: absolute;
  }
}
.remote-log-container.show {
  display: flex;
}

.logContainer {
  height: 100%;
  background: black;
  padding: 8px;
  overflow: auto;
}
.logContainer .logMessage {
  white-space: pre-wrap;
}
.logContainer .logMessage.log-error {
  color: var(--danger, #c92a2a);
}
.logContainer .logMessage.log-information {
  color: var(--light, #cccccc);
}
.logContainer .logMessage.log-info {
  color: var(--info, #2e6db0);
}
.logContainer .logMessage.log-warning {
  color: var(--warning, #feb05b);
}

/*# sourceMappingURL=management.css.map */
