.mg-side5 {
  margin-left: 5px;
  margin-right: 5px;
}
.mg-side4 {
  margin-left: 4px;
  margin-right: 4px;
}
.mg-side3 {
  margin-left: 3px;
  margin-right: 3px;
}
.mg-side2 {
  margin-left: 2px;
  margin-right: 2px;
}
.mg-side1 {
  margin-left: 1px;
  margin-right: 1px;
}
.mg-top5 {
  margin-top: 5px;
}
.mg-top4 {
  margin-top: 4px;
}
.mg-top3 {
  margin-top: 3px;
}
.mg-top2 {
  margin-top: 2px;
}
.mg-top1 {
  margin-top: 1px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
table,
thead,
tbody,
tfoot,
tr,
td,
th {
  box-sizing: content-box;
  border-color: inherit;
  text-indent: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body {
  margin: 0;
}
hr {
  height: 0;
  color: inherit;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
select {
  text-transform: none;
}
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[disabled] {
  cursor: default;
}
:root {
  --accent: #0078d7;
  --accent-light: #0086f1;
  --accent-lighten: #58b5ff;
  --accent-mediumlight: #8accff;
  --accent-stronglight: #bee2ff;
  --accent-darken: #004d8b;
  --accent-dark: #001d34;
  --header-bg: #003158;
  --footer-bg: #003f71;
  --color-bg: #ffffff;
  --color-bg-accent: #fafafa;
  --color-bg-light: #e6e6e6;
  --color-bg-lighten: #bfbfbf;
  --color-border: #a6a6a6;
  --color-border-dark: #737373;
  --color-text-muted: #404040;
  --color-text: #000000;
  --warning: #ff9900;
  --warning-darken: #e68a00;
  --warning-light: #ffebcc;
  --strong: #990000;
  --strong-light: #e50000;
  --medium: #9b4e00;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-base: 12px;
  --line-height-base: 1.45;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.18);
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
}
img.fm-ico {
  cursor: pointer;
  border: 0px;
}
a.fm-ico {
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
input.fm {
  display: block;
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  box-sizing: border-box;
  width: 100%;
  min-height: 28px;
  outline: 0;
  padding: 0 6px;
  margin: 0;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
input.fm:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
input.fm:disabled {
  border-color: #e6e6e6;
  background-color: #fafafa;
  cursor: not-allowed;
}
textarea.fm {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  box-sizing: border-box;
  width: 100%;
  outline: 0;
  padding: 4px 6px;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
textarea.fm:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
textarea.fm:disabled {
  border-color: #e6e6e6;
  background-color: #fafafa;
  cursor: not-allowed;
}
button.fm {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  box-sizing: border-box;
  border: 1px solid #737373;
  white-space: nowrap;
  overflow: hidden;
  min-height: 28px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  background: linear-gradient(to bottom, #fafafa, #e6e6e6);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
button.fm:hover {
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  box-shadow: var(--shadow-sm);
}
button.fm:active {
  background: #e6e6e6;
}
button.fm img {
  vertical-align: middle;
  position: relative;
  left: -3px;
  height: 16px;
}
button.fm span {
  position: relative;
  top: 1px;
}
a.fm {
  text-decoration: none;
  color: #0078d7;
  cursor: pointer;
  font-style: italic;
  transition: color var(--transition-fast);
}
a.fm:hover {
  color: #9b4e00;
  text-decoration: underline;
}
div.fm-s {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 6px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
div.fm-s a {
  cursor: pointer;
  text-decoration: underline;
  margin-left: 2px;
  line-height: 1.45;
}
div.fm-s img {
  vertical-align: bottom;
  margin-right: 3px;
}
div.fm-s:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
div.fm-m {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
div.fm-m a {
  display: block;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 2px;
  margin-top: 2px;
  line-height: 1.45;
}
div.fm-m img {
  vertical-align: bottom;
  margin-right: 3px;
}
div.fm-m:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
div.fm_list {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  overflow: hidden;
}
div.fm_list a {
  display: block;
  cursor: default;
  text-decoration: none;
  margin: 0;
  padding: 4px 6px;
  line-height: 1.45;
  border-bottom: solid 1px #e1e2e6;
  color: #000000;
  transition: background-color var(--transition-fast);
}
div.fm_list a:hover {
  color: #000000;
  background-color: #e6e6e6;
}
div.fm_list a.sel {
  color: #000000;
  background-color: #bee2ff;
}
div.fm_list img {
  margin-right: 3px;
}
div.fm-lbl a {
  cursor: pointer;
  text-decoration: underline;
  margin-left: 2px;
  line-height: 1.45;
}
div.fm-lbl img {
  vertical-align: bottom;
  margin-right: 3px;
}
div.fm-off a {
  color: #000000;
  text-decoration: none;
  cursor: default;
}
div.fm-ddl {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  line-height: var(--line-height-base);
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  min-height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding: 4px 26px 4px 6px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
div.fm-ddl:hover {
  border-color: #9a9dae;
}
div.fm-ddl label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
div.fm-ddl:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
div.fm-focused {
  border-color: #0078d7 !important;
  box-shadow: 0 0 0 3px #bee2ff;
}
div.fm-ro {
  border: solid 1px #a6a6a6;
  background-image: none;
  user-select: text;
}
div.fm-ro:focus {
  box-shadow: none;
  border-color: #a6a6a6;
}
div.fm-menu {
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  cursor: default;
}
div.fm-menu a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  border: solid 1px transparent;
  font-size: 12px;
  line-height: 1.2;
  font-family: var(--font-ui);
  text-decoration: none;
  color: #000000;
  margin: 1px 1px 1px 0;
  padding: 3px 4px 2px 4px;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}
div.fm-menu a:hover {
  color: #000000;
  border-color: #9a9dae;
  background-color: #e6e6e6;
}
div.fm-menu a.sel {
  color: #000000;
  border-color: #9a9dae;
  background-color: #e6e6e6;
}
div.fm-menu a > i,
div.fm-menu a > svg {
  flex-shrink: 0;
}
div.fm-menu img {
  width: 16px;
  height: 16px;
  margin: -2px 3px 0 3px;
  vertical-align: middle;
}
div.fm-menu i.V {
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: 0px;
  border-right: solid 1px #70758b;
}
div.fm_popup {
  position: absolute;
  background-color: #ffffff;
  border: solid 1px #bfbfbf;
  border-radius: var(--radius-md);
  outline: 0;
  box-shadow: var(--shadow-md);
}
div.fm_popup a {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  color: #000000;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  transition: background-color var(--transition-fast);
}
div.fm_popup a:hover {
  color: #000000;
  background-color: #e6e6e6;
}
div.fm_popup a > i,
div.fm_popup a > svg {
  flex-shrink: 0;
}
div.fm_popup a.sel {
  color: #000000;
  background-color: #bee2ff;
}
div.fm_popup img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 0 0 1px;
  flex-shrink: 0;
}
div.fm-progress {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  min-width: 220px;
  max-width: 90vw;
  min-height: 48px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: var(--line-height-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: fm-fade-in var(--transition-base);
}
div.fm-progress > div:empty {
  display: none;
}
div.fm-progress > div:empty + .fm-spinner {
  width: 26px;
  height: 26px;
  border-width: 3px;
}
.fm-spinner {
  display: inline-block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  border: 2px solid var(--color-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: fm-spin 0.7s linear infinite;
}
.fm-spinner.fm-spinner-sm {
  width: 12px;
  height: 12px;
  vertical-align: -2px;
}
.fm-spinner.fm-spinner-lg {
  width: 26px;
  height: 26px;
  border-width: 3px;
  vertical-align: -7px;
}
.fm-progress-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.32);
  animation: fm-fade-in var(--transition-base);
}
@keyframes fm-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fm-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fm-spinner {
    animation-duration: 2.1s;
  }
  div.fm-progress,
  .fm-progress-backdrop {
    animation: none;
  }
}
SELECT.fm {
  font-size: var(--font-size-base);
  font-family: var(--font-ui);
  box-sizing: border-box;
  min-height: 28px;
  outline: 0;
  width: 100%;
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  padding: 3px 6px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
SELECT.fm:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px #bee2ff;
}
INPUT.fm-chk {
  outline: 0;
  padding: 0;
  margin: 0 4px 0 0;
  vertical-align: middle;
  accent-color: #0078d7;
}
INPUT.fm-chk:focus {
  box-shadow: 0 0 0 3px #bee2ff;
}
.fm-btn {
  border: 0;
  margin: 0;
  font-family: var(--font-ui);
  appearance: none;
  text-align: center;
  outline: 0;
  font-size: var(--font-size-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  background-color: #0078d7;
  min-height: 28px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 4px 16px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}
.fm-btn img {
  margin-right: 5px;
  vertical-align: middle;
  height: 16px;
}
.fm-btn:hover {
  background-color: #0086f1;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}
.fm-btn:active {
  background-color: #004d8b;
  box-shadow: none;
}
.fm-btn:focus {
  box-shadow: 0 0 0 3px #bee2ff;
}
.fm-btn.fm-btn--primary {
  background-color: #16a34a;
}
.fm-btn.fm-btn--primary:hover {
  background-color: #15803d;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn--primary:active {
  background-color: #14532d;
  box-shadow: none;
}
.fm-btn.fm-btn--primary:focus {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.35);
}
.fm-btn.fm-btn--secondary {
  background-color: #6b7280;
}
.fm-btn.fm-btn--secondary:hover {
  background-color: #4b5563;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn--secondary:active {
  background-color: #374151;
  box-shadow: none;
}
.fm-btn.fm-btn--secondary:focus {
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.35);
}
.fm-btn.fm-btn--danger {
  background-color: #dc2626;
}
.fm-btn.fm-btn--danger:hover {
  background-color: #b91c1c;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn--danger:active {
  background-color: #991b1b;
  box-shadow: none;
}
.fm-btn.fm-btn--danger:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.35);
}
.fm-btn.fm-btn--main {
  font-weight: bold;
}
.fm-btn[cmd="OK"],
.fm-btn[cmd="apply"],
.fm-btn[cmd="save"],
.fm-btn[cmd="saveX"],
.fm-btn[cmd="Save"],
.fm-btn[cmd="Publish"],
.fm-btn[cmd="publish"] {
  background-color: #16a34a;
}
.fm-btn[cmd="OK"]:hover,
.fm-btn[cmd="apply"]:hover,
.fm-btn[cmd="save"]:hover,
.fm-btn[cmd="saveX"]:hover,
.fm-btn[cmd="Save"]:hover,
.fm-btn[cmd="Publish"]:hover,
.fm-btn[cmd="publish"]:hover {
  background-color: #15803d;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="OK"]:active,
.fm-btn[cmd="apply"]:active,
.fm-btn[cmd="save"]:active,
.fm-btn[cmd="saveX"]:active,
.fm-btn[cmd="Save"]:active,
.fm-btn[cmd="Publish"]:active,
.fm-btn[cmd="publish"]:active {
  background-color: #14532d;
  box-shadow: none;
}
.fm-btn[cmd="OK"]:focus,
.fm-btn[cmd="apply"]:focus,
.fm-btn[cmd="save"]:focus,
.fm-btn[cmd="saveX"]:focus,
.fm-btn[cmd="Save"]:focus,
.fm-btn[cmd="Publish"]:focus,
.fm-btn[cmd="publish"]:focus {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.35);
}
.fm-btn[cmd="X"],
.fm-btn[cmd="Back"],
.fm-btn[cmd="back"],
.fm-btn[cmd="Wnd__Close"] {
  background-color: #6b7280;
}
.fm-btn[cmd="X"]:hover,
.fm-btn[cmd="Back"]:hover,
.fm-btn[cmd="back"]:hover,
.fm-btn[cmd="Wnd__Close"]:hover {
  background-color: #4b5563;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="X"]:active,
.fm-btn[cmd="Back"]:active,
.fm-btn[cmd="back"]:active,
.fm-btn[cmd="Wnd__Close"]:active {
  background-color: #374151;
  box-shadow: none;
}
.fm-btn[cmd="X"]:focus,
.fm-btn[cmd="Back"]:focus,
.fm-btn[cmd="back"]:focus,
.fm-btn[cmd="Wnd__Close"]:focus {
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.35);
}
.fm-btn[cmd="delete"],
.fm-btn[cmd="Delete"] {
  background-color: #dc2626;
}
.fm-btn[cmd="delete"]:hover,
.fm-btn[cmd="Delete"]:hover {
  background-color: #b91c1c;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="delete"]:active,
.fm-btn[cmd="Delete"]:active {
  background-color: #991b1b;
  box-shadow: none;
}
.fm-btn[cmd="delete"]:focus,
.fm-btn[cmd="Delete"]:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.35);
}
.fm-btn[cmd="NONE"] {
  background-color: #d97706;
}
.fm-btn[cmd="NONE"]:hover {
  background-color: #b45309;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="NONE"]:active {
  background-color: #92400e;
  box-shadow: none;
}
.fm-btn[cmd="NONE"]:focus {
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.35);
}
.fm-btn.fm-btn-save {
  background-color: #16a34a;
}
.fm-btn.fm-btn-save:hover {
  background-color: #15803d;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn-save:active {
  background-color: #14532d;
  box-shadow: none;
}
.fm-btn.fm-btn-save:focus {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.35);
}
.fm-btn.fm-btn-close {
  background-color: #6b7280;
}
.fm-btn.fm-btn-close:hover {
  background-color: #4b5563;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn-close:active {
  background-color: #374151;
  box-shadow: none;
}
.fm-btn.fm-btn-close:focus {
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.35);
}
.fm-btn[cmd="sync"] {
  background-color: #0b6e4f;
}
.fm-btn[cmd="sync"]:hover {
  background-color: #0e845f;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="sync"]:active {
  background-color: #08513a;
  box-shadow: none;
}
.fm-btn[cmd="sync"]:focus {
  box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.35);
}
.fm-btn[cmd="audit"] {
  background-color: #1e5aa8;
}
.fm-btn[cmd="audit"]:hover {
  background-color: #2a6bc2;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="audit"]:active {
  background-color: #15437c;
  box-shadow: none;
}
.fm-btn[cmd="audit"]:focus {
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.35);
}
.fm-btn[cmd="wf_events"] {
  background-color: #6b7280;
}
.fm-btn[cmd="wf_events"]:hover {
  background-color: #4b5563;
  box-shadow: var(--shadow-md);
}
.fm-btn[cmd="wf_events"]:active {
  background-color: #374151;
  box-shadow: none;
}
.fm-btn[cmd="wf_events"]:focus {
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.35);
}
.fm-btn.fm-btn-prev {
  background-color: transparent;
  color: #0078d7;
  border: 1px solid #0078d7;
  box-sizing: border-box;
  box-shadow: none;
}
.fm-btn.fm-btn-prev:hover {
  background-color: #0078d7;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}
.fm-btn.fm-btn-prev:active {
  background-color: #004d8b;
  color: #ffffff;
  box-shadow: none;
}
.fm-btn.fm-btn-prev:focus {
  box-shadow: 0 0 0 3px #bee2ff;
}
div.fm-dlg-footer .fm-btn i,
div.fm-dlg-footer .fm-btn img {
  color: #ffffff;
  filter: none;
}
.fm-btn-flat {
  margin: 0;
  appearance: none;
  text-align: center;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid 1px #0078d7;
  background-color: transparent;
  border-radius: var(--radius-sm);
  color: #0078d7;
  min-height: 24px;
  font-size: 12px;
  font-family: var(--font-ui);
  white-space: nowrap;
  text-decoration: none;
  padding: 2px 10px;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.fm-btn-flat:hover {
  background-color: #0078d7;
  color: #ffffff;
}
.fm-btn-flat:focus {
  box-shadow: 0 0 0 3px #bee2ff;
}
SELECT.fm-ro {
  border: solid 1px #a6a6a6;
  background-image: none;
  user-select: text;
}
td.fm-cal-today {
  color: #ffffff;
  background-color: #0078d7;
  border-radius: var(--radius-sm);
}
span.fm-tooltip {
  font-size: 12px;
  color: #404040;
  background-color: #ffebcc;
  white-space: nowrap;
  font-style: italic;
  border: solid 1px #e68a00;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 5px 16px;
}
.fm-toolbar {
  height: 24px;
  color: #000000;
  background-color: #bfbfbf;
}
.fm-shadow {
  box-shadow: var(--shadow-md);
}
i:hover {
  cursor: pointer;
}
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.fm-menu [data-lucide],
.fm-toolbar [data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fm-btn [data-lucide],
.fm-dlg-header [data-lucide] {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.fm-icon-lg[data-lucide],
[data-lucide].fm-icon-lg {
  width: 32px;
  height: 32px;
  stroke-width: 1.25;
  display: block;
  margin: 0 auto 4px auto;
  color: #0078d7;
}
[data-lucide][cmd] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  stroke-width: 1.75;
  transition: color var(--transition-fast);
}
[data-lucide][cmd]:hover {
  color: #0078d7;
}
i.fm-ico[data-lucide] {
  cursor: pointer;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: #737373;
  transition: color var(--transition-fast);
}
i.fm-ico[data-lucide]:hover {
  color: #990000;
}
div.fm-toolbar:has(+ div.fm_grid) {
  margin-top: 10px;
  overflow: visible;
  background: var(--color-bg-light);
}
div.fm-toolbar:has(+ div.fm_grid) .fm-menu > a {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2px 10px;
  margin: 1px 5px 1px 0;
  font-weight: 600;
  gap: 7px;
}
div.fm-toolbar:has(+ div.fm_grid) .fm-menu > a:hover {
  border-color: var(--color-primary);
  background: var(--color-bg);
}
div.fm-toolbar:has(+ div.fm_grid) .fm-menu > a.sel {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
}
div.fm-toolbar:has(+ div.fm_grid) .fm-menu i.V {
  display: none;
}
div.fmForm {
  background-color: #fafafa;
  border: solid 1px #a6a6a6;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
div.txro {
  user-select: text;
  background-color: #ffffff;
  border: solid 1px #a6a6a6;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  color: #404040;
  cursor: text;
  min-height: 28px;
  overflow: hidden;
  padding: 4px 6px;
  white-space: nowrap;
}
div.fm-lookup-grid {
  border: solid 1px #a6a6a6;
}
div.fm-eg {
  border: solid 1px #9a9dae;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
div.fm-eg-ro {
  border: solid 1px #a6a6a6;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
div.fm-eg-hdr {
  padding-top: 1px;
  position: relative;
}
div.fm-eg-hdr table {
  background-color: #e6e6e6;
  border-bottom: 1px solid #9a9dae;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
div.fm-eg-hdr td {
  border-right: solid 1px #9a9dae;
  padding: 3px 0 4px 5px;
  vertical-align: middle;
  line-height: normal;
  white-space: nowrap;
  /* or normal */
  overflow: hidden;
  text-overflow: ellipsis;
  /* optional */
}
div.fm-eg-hdr td.eg-req {
  color: #990000;
}
div.fm-eg-hdr td.eg-rec {
  color: #004d8b;
}
div.fm-eg-hdr td.eg-group {
  border-bottom: solid 1px #9a9dae;
  font-weight: 500;
  padding-bottom: 5px;
  text-align: center;
}
div.fm-eg-hdr td:last-child {
  border-right: 0;
}
.fmTabs span.tab {
  box-sizing: border-box;
  background-color: #ffffff;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  border: solid 1px #a6a6a6;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  height: 26px;
  margin-left: 2px;
  padding: 4px 12px 0;
  position: relative;
  top: 3px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.fmTabs span.tab:hover {
  background-color: #fafafa;
}
.fmTabs span.tabOn {
  background-color: #fafafa;
  border-bottom: solid 1px #fafafa;
  border-left: solid 1px #a6a6a6;
  border-right: solid 1px #a6a6a6;
  border-top: solid 3px #ff9900;
  cursor: default;
  font-weight: 500;
  height: 30px;
  top: 0px;
}
.fmForm div.tab {
  padding: 6px 5px 5px 5px;
}
.fmForm fieldset.sec {
  border-radius: var(--radius-md);
  border: solid 1px #bfbfbf;
  margin: 8px 1px 12px 1px;
  padding: 8px 3px 3px 3px;
  position: relative;
}
.fmForm legend {
  background-color: #fafafa;
  color: #404040;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  left: 5px;
  margin: 0;
  position: absolute;
  top: -9px;
}
.fmForm div.sec {
  margin: 8px 0 5px 0;
  padding: 12px 0 5px 0;
  position: relative;
}
.fmForm label.sec {
  border-bottom: 1px solid #737373;
  color: #404040;
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  left: 2px;
  margin: 0;
  padding-bottom: 3px;
  position: absolute;
  top: -8px;
  width: 100%;
}
.fmForm label.sec.sec-line {
  border-bottom: 1px solid #737373;
}
.fmForm label.sec1 {
  border-bottom: 1px solid #737373;
  color: #404040;
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 3px;
  padding-left: 2px;
  position: absolute;
  width: 100%;
}
.fmForm td.req {
  color: #990000;
  font-weight: 500;
  min-height: 28px;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
.fmForm td.rec {
  color: #004d8b;
  font-weight: 500;
  min-height: 28px;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
.fmForm td.n {
  font-weight: 500;
  min-height: 28px;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
table.fm-eg-data td,
table.fm-eg-grid td {
  border-top: solid 1px #e1e2e6;
  overflow: hidden;
  padding: 4px 2px 4px 4px;
}
table.fm-eg-data td > span.lc-btn,
table.fm-eg-grid td > span.lc-btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}
table.fm-eg-data td > span.lc-btn [data-lucide],
table.fm-eg-grid td > span.lc-btn [data-lucide] {
  pointer-events: none;
  vertical-align: middle;
}
table.fm-eg-grid tr:hover {
  background-color: #bee2ff;
  cursor: pointer;
}
.fmForm td > table td:not(:first-child) {
  line-height: 0;
  vertical-align: middle;
}
table.gridBar {
  background: var(--table-head-bg);
  border-bottom: solid 1px var(--color-border);
  border-collapse: collapse;
  border: 0px;
  cursor: default;
  height: 30px;
  table-layout: fixed;
  width: 100%;
}
table.gridBar td.hdr-over {
  background: #bee2ff;
}
table.gridBar td.hdr {
  cursor: pointer;
  overflow: hidden;
  padding-left: 12px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: background var(--transition-fast);
}
table.gridBar td.hdr:hover {
  background: #dbdbdb;
}
table.gridBar span.sort-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--color-text-muted);
  vertical-align: middle;
  margin-left: 3px;
}
table.gridBar span.sort-dn {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-text-muted);
  vertical-align: middle;
  margin-left: 3px;
}
table.gridBar span.sep {
  border-left: solid 1px var(--color-border);
  border-right: solid 1px #ffffff;
  display: inline-block;
  height: 14px;
  width: 0px;
  vertical-align: middle;
}
table.gridSearchPnl {
  border-bottom: solid 1px #9a9dae;
}
table.gridSearchPnl td {
  vertical-align: middle;
}
table.gridSearchPnl input,
table.gridSearchPnl select {
  min-height: 0;
  height: 24px;
  padding: 0 6px;
  box-shadow: none;
  font-size: 11px;
}
table.gridSearchPnl .fm-btn-flat {
  min-height: 0;
  height: 24px;
  padding: 0 10px;
}
table.gridData td {
  border-bottom: solid 1px #bee2ff;
  padding-left: 12px;
  font-size: 12.5px;
  color: #27313f;
}
table.gridData td.r {
  padding-right: 12px;
  text-align: right;
}
table.gridData td.c {
  text-align: center;
}
table.gridData td.ln {
  overflow: hidden;
  white-space: nowrap;
}
table.gridData td.rn {
  overflow: hidden;
  padding-right: 12px;
  text-align: right;
  white-space: nowrap;
}
table.gridData td.cn {
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
table.gridData tr:nth-child(even) {
  background: var(--row-zebra);
}
table.gridData tr.row-over {
  background-color: #e6e6e6;
}
table.gridData tr.row-selected {
  background: var(--row-selected);
  color: #27313f;
}
table.gridPreview {
  background-color: #bee2ff;
  border-top: solid 1px #ffffff;
  width: 100%;
}
table.gridPreview td {
  border: 0;
  color: #70758b;
  padding: 6px;
}
table.gridReport div.rep {
  background-color: #fafafa;
  border-radius: var(--radius-md);
  border: solid 1px #e6e6e6;
  margin: 5px 5px 0px 5px;
}
table.gridReport label.d {
  display: block;
  font-weight: 500;
  padding: 5px 0 3px 5px;
  position: relative;
}
table.gridReport img.d {
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}
table.gridReport table.rep {
  border-collapse: collapse;
  border: 0px;
  margin: 0 0 4px 23px;
  table-layout: fixed;
  width: 95%;
}
table.gridReport td.n {
  color: #404040;
  font-weight: 500;
  padding: 3px;
  vertical-align: top;
}
table.gridReport td.t {
  padding: 3px;
  vertical-align: top;
}
table.gridReport tr.row-selected div.rep {
  background-color: #bee2ff;
  border-color: #58b5ff;
}
table.gridReport tr.row-over div.rep {
  background-color: #e6e6e6;
}
table.gridReport_sg {
  border-collapse: collapse;
  border: solid 1px #e1e2e6;
  table-layout: fixed;
  width: 100%;
}
table.gridReport_sg td {
  border-bottom: solid 1px #e1e2e6;
  padding: 3px;
}
table.md-tbl {
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
  border-left: solid 1px #bfbfbf;
  border-right: solid 1px #bfbfbf;
  border-top: solid 1px #bfbfbf;
  width: 100%;
}
div.gridDataPanel {
  background-color: var(--color-bg);
  cursor: default;
  overflow-x: hidden;
  overflow-y: scroll;
}
div.gridDataPanel a {
  cursor: pointer;
}
div.gridDataPanel img.action,
div.gridDataPanel span.action {
  cursor: pointer;
  height: 16px;
  margin-left: 3px;
  margin-right: 2px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  transition: opacity var(--transition-fast);
}
div.gridDataPanel img.action [data-lucide],
div.gridDataPanel span.action [data-lucide] {
  pointer-events: none;
}
div.gridDataPanel img.action:hover,
div.gridDataPanel span.action:hover {
  opacity: 0.75;
}
div.gridDataPanel span.lc-btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}
div.gridDataPanel span.lc-btn [data-lucide] {
  pointer-events: none;
}
div.gridStatus {
  background-color: var(--color-bg-accent);
  border-top: solid 1px var(--color-border);
  color: var(--color-text-muted);
  cursor: default;
  font-size: 12px;
}
div.gridStatus input {
  min-height: 0;
  height: 13px;
  width: 28px;
  padding: 0 2px;
  font-size: 8pt;
  border-radius: 2px;
  box-shadow: none;
}
div.gridStatus span.page {
  display: inline-block;
  height: 16px;
  vertical-align: text-bottom;
  width: 16px;
  text-align: center;
  line-height: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}
div.md-panel {
  background-color: #bee2ff;
  padding: 5px 6px 6px 17px;
}
div.md-text {
  color: #70758b;
  font-weight: 500;
  margin: 0 0 4px 0px;
}
div.gridInfo {
  background-color: #ffebcc;
  border-bottom: solid 1px #e6e6e6;
  font-size: 12px;
  line-height: 20px;
  padding: 4px 5px;
}
span.FL0::before {
  content: '«';
  color: #a6a6a6;
}
span.FL1 {
  cursor: pointer;
}
span.FL1::before {
  content: '«';
  color: #0078d7;
}
span.FL1:hover::before {
  color: #004d8b;
}
span.L0 {
  margin-left: 2px;
}
span.L0::before {
  content: '‹';
  color: #a6a6a6;
}
span.L1 {
  cursor: pointer;
  margin-left: 2px;
}
span.L1::before {
  content: '‹';
  color: #0078d7;
}
span.L1:hover::before {
  color: #004d8b;
}
span.R0::before {
  content: '›';
  color: #a6a6a6;
}
span.R1 {
  cursor: pointer;
}
span.R1::before {
  content: '›';
  color: #0078d7;
}
span.R1:hover::before {
  color: #004d8b;
}
td.md-c {
  cursor: pointer;
  padding-bottom: 4px;
  padding-top: 4px;
}
td.fm-grid-group {
  background-color: #e6e6e6;
  border-bottom: solid 1px #bfbfbf !important;
  color: #000000;
  font-weight: 500;
  padding: 6px 0px 6px 4px !important;
}
tr.md-hdr {
  background-color: #e6e6e6;
  border-bottom: solid 1px #e1e2e6;
  height: 22px;
}
tr.md-row {
  transition: background-color var(--transition-fast);
}
tr.md-row:hover {
  background-color: #ffb84d;
}
table.gridSearchPnl {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  overflow: hidden;
}
table.gridBar {
  /*    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-top-left-radius: var(--radius-card);
    border-top-right-radius: var(--radius-card);*/
  border: none;
}
div.gridDataPanel {
  border: 0;
}
div.gridStatus {
  border-bottom-left-radius: var(--radius-card);
  border-bottom-right-radius: var(--radius-card);
}
div.fm_grid {
  margin-top: 10px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
table.gridSearchPnl {
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
}
div.gridDataPanel::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
div.gridDataPanel::-webkit-scrollbar-thumb {
  background: #aeb6c4;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
div.gridDataPanel::-webkit-scrollbar-thumb:hover {
  background: #8d96a6;
}
div.gridDataPanel::-webkit-scrollbar-track {
  background: transparent;
}
div.gridDataPanel {
  scrollbar-width: thin;
  scrollbar-color: #c7cdd6 transparent;
}
table.fmNav {
  user-select: none;
  table-layout: fixed;
}
table.fmNavLeft {
  user-select: none;
  height: 100%;
  table-layout: fixed;
  width: 100%;
}
div.fmNavHeader {
  background: var(--color-bg-light);
}
div.fmNavHeader label {
  font-size: var(--font-size-base);
  font-weight: 700;
  left: 5px;
  position: absolute;
  top: 5px;
  white-space: nowrap;
}
div.fmNavHeader span {
  font-size: var(--font-size-base);
  font-weight: 500;
  /*position: absolute;*/
  right: 2px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
div.fmNavHeader span a.fmNavCmd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 1px transparent;
  margin: 1px 1px 1px 0;
  padding: 3px 4px 2px 4px;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}
div.fmNavHeader span a.fmNavCmd:hover {
  border-color: var(--color-border-input);
  background-color: var(--color-bg-light);
}
div.fmNavHeader span a.fmNavCmd [data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  pointer-events: none;
}
div.fmNavHeader span a.fmNavCmd[cmd="refresh"] [data-lucide] {
  color: #2f8f2f;
}
div.fmNavHeader span img {
  margin-left: 5px;
}
div.fmNavTabs a.sel {
  background: var(--accent-darken);
}
div.fmNavTabs a.sel label {
  color: #ffffff;
}
div.fmNavTabs a {
  user-select: none;
  background: var(--header-bg);
  cursor: pointer;
  height: 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 5px;
  transition: background var(--transition-fast);
}
div.fmNavTabs a:hover {
  background: var(--accent-lighten);
}
div.fmNavTabs a:hover label {
  color: var(--color-text);
}
div.fmNavTabs a img,
div.fmNavTabs a [data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
div.fmNavTabs a label {
  color: #bfbfbf;
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}
.fmNavTree {
  background-color: var(--color-bg);
  overflow-y: auto;
  width: 100%;
}
.fmNavTree li {
  list-style-type: none;
  margin-left: 1px;
  margin-top: 1px;
  white-space: nowrap;
}
.fmNavTree li ul {
  margin-left: 0;
}
.fmNavTree li i {
  font-size: 13px;
}
.fmNavTree li label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fmNavTree li label [data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fmNavTree li a {
  user-select: none;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 0;
  border-left: 3px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size-base);
  position: relative;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.fmNavTree li a label {
  background-color: transparent;
  border-color: transparent;
  border-style: solid;
  border-width: 0 1px;
  color: var(--color-text-secondary);
  min-height: 26px;
  margin: 0 -1px;
  padding: 4px 8px 4px 8px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.fmNavTree li a:hover label {
  background: #f1f4f9;
  color: var(--accent);
}
.fmNavTree li a.sel {
  border-left-color: var(--accent);
}
.fmNavTree li a.sel label {
  background: var(--tree-active-bg);
  color: var(--accent);
  font-weight: 600;
}
.fmNavTree li a label {
  min-height: 26px;
}
.fmNavTree li b,
.fmNavTree li i {
  user-select: none;
  cursor: default;
  display: inline-block;
  font-size: var(--font-size-base);
  padding: 4px 8px 4px 6px;
  position: relative;
}
.fmNavTree span {
  display: inline-block;
  height: 18px;
  vertical-align: middle;
  width: 16px;
  text-align: center;
  line-height: 18px;
  color: var(--color-text-faint);
  font-size: 14px;
  font-style: normal;
}
.fmNavTree span.minus {
  cursor: pointer;
}
.fmNavTree span.minus::before {
  content: '−';
}
.fmNavTree span.plus {
  cursor: pointer;
}
.fmNavTree span.plus::before {
  content: '+';
}
.fmNavTree label img {
  margin-right: 5px;
  margin-top: -2px;
  vertical-align: middle;
}
.fmNavTree li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.fmNavTree li > span {
  flex: none;
}
.fmNavTree ul {
  padding-left: 0;
  margin-left: 0;
}
.fmNavTree li > ul {
  padding-left: 16px;
}
.fmNavTree li > ul {
  flex: 1 1 100%;
  min-width: 0;
}
.fmNavTree,
.fmNavTree ul {
  display: block;
}
.fmNavTree {
  width: 100%;
  box-sizing: border-box;
}
.fmNavTree ul {
  width: auto;
}
.fmNavTree li > a {
  display: flex;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  align-items: center;
  border-radius: 0;
  padding-right: 14px;
}
.fmNavTree li > a label {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5px 4px 5px 4px;
}
.fmNavTree li > a:hover label {
  background: #f1f4f9;
}
.fmNavTree {
  overflow-x: hidden;
}
.fmNavTree li > a > label {
  overflow: hidden;
}
.fmNavTree .fmNavName {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.fmNavTree .fmNavCount {
  flex: none;
  margin-left: auto;
  width: auto;
  height: auto;
  padding-left: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-disabled);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.fmNavTree li > a.sel .fmNavCount {
  color: var(--accent);
}
.fmNavTree::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.fmNavTree::-webkit-scrollbar-thumb {
  background: #aeb6c4;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.fmNavTree::-webkit-scrollbar-thumb:hover {
  background: #8d96a6;
}
.fmNavTree::-webkit-scrollbar-track {
  background: transparent;
}
.fmNavTree {
  scrollbar-width: thin;
  scrollbar-color: #c7cdd6 transparent;
}
table.fmNavLeft {
  border-right: 1px solid var(--color-border);
}
.fmNavTree li > a:hover {
  background: #f1f4f9 !important;
}
.fmNavTree li > a:hover label {
  background: transparent !important;
}
.fmNavTree li > a.sel {
  background: var(--tree-active-bg) !important;
}
.fmNavTree li > a.sel label {
  background: transparent !important;
}
.fmNavTree li > a:hover,
.fmNavTree li > a.sel {
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}
.fmNavTree li > a:hover label,
.fmNavTree li > a.sel label {
  border-color: transparent !important;
}
div.fm-dlg-header {
  position: absolute;
  top: 0;
  width: 100%;
}
div.fm-dlg-header H1 {
  font-size: 13pt;
  font-weight: 500;
  padding-left: 10px;
}
div.fm-dlg-header label {
  display: block;
  font-size: 12px;
  padding-left: 20px;
}
div.fm-dlg-footer {
  background: linear-gradient(to bottom, #e6e6e6, #bfbfbf);
  border-top: 1px solid #a6a6a6;
  bottom: 0px;
  height: 34px;
  position: absolute;
  width: 100%;
  align-items: center;
  display: flex;
  padding: 0 5px;
}
div.fm-dlg input.ro {
  background-color: #e6e6e6;
  border: solid 1px #a6a6a6;
  border-radius: var(--radius-sm);
}
div.fm-dlg td.header label {
  color: #404040;
  font-size: 12px;
  font-style: italic;
}
div.fm-dlg label.comment {
  color: #0078d7;
  font-style: italic;
}
div.fm-dlg label.comment_gray {
  color: #404040;
  font-style: italic;
}
div.fm-dlg div.comment {
  color: #0078d7;
  font-style: italic;
  line-height: 1.6;
}
div.fm-dlg div.desc {
  color: #70758b;
  font-size: 12px;
  padding-left: 5px;
}
div.fm-dlg FIELDSET {
  border-radius: var(--radius-md);
  border: solid 1px #bee2ff;
  margin: 15px 5px 10px 5px;
  padding: 8px 3px 3px 3px;
  position: relative;
}
div.fm-dlg LEGEND {
  background-color: #fafafa;
  color: #000000;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  left: 5px;
  margin: 0;
  position: absolute;
  top: -9px;
}
div.fm-dlg DIV.sec {
  margin: 8px 0 0 0;
  padding-top: 8px;
  position: relative;
}
div.fm-dlg LABEL.sec {
  border-bottom: 1px solid #737373;
  color: #404040;
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  left: 2px;
  margin: 0;
  padding-bottom: 3px;
  position: absolute;
  top: -8px;
  width: 100%;
}
div.fm-dlg LABEL.sec1 {
  border-bottom: 1px solid #737373;
  color: #404040;
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 3px;
  padding-left: 2px;
  position: absolute;
  width: 100%;
}
div.fm-dlg TD.req {
  color: #990000;
  font-weight: 500;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
div.fm-dlg TD.rec {
  color: #004d8b;
  font-weight: 500;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
div.fm-dlg TD.n {
  color: #737373;
  font-size: 12px;
  font-weight: 500;
  min-height: 28px;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
label.fm-lbl {
  color: #737373;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
}
label.fm-chk {
  margin-left: 3px;
  white-space: nowrap;
}
label.fm-chk-block {
  display: block;
  line-height: 1.5;
  margin-left: 3px;
  padding: 3px;
}
div.fm-dlg-toolbar {
  background-color: #e6e6e6;
  border-top: 1px solid #bfbfbf;
  height: 32px;
}
div.fm-dlg-menu {
  cursor: default;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
div.fm-dlg-menu a {
  background-position: 3px 5px;
  background-repeat: no-repeat;
  border: solid 1px transparent;
  color: ButtonText;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.2;
  margin: 1px 1px 1px 0px;
  padding: 6px 5px 6px 24px;
  position: relative;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}
div.fm-dlg-menu a:hover {
  background-color: #a6a6a6;
  border-color: #404040;
}
div.fm-dlg-menu a:active {
  left: 1px;
  top: 1px;
}
div.fm-dlg-menu a > i,
div.fm-dlg-menu a > svg {
  flex-shrink: 0;
}
div.fm-dlg-menu img {
  margin: -2px 4px 0 2px;
  vertical-align: middle;
}
div.fm-dlg-menu i.V {
  border-left: solid 1px #a6a6a6;
  border-right: solid 1px #ffffff;
  bottom: 3px;
  position: absolute;
  top: 3px;
  width: 0px;
}
div.fm-dlg-tabs {
  background-color: #fafafa;
  border: solid 1px #9a9dae;
  left: 0px;
  overflow: hidden;
  padding: 5px;
  position: absolute;
  right: 0px;
  top: 27px;
}
div.fm-dlg-tabs div.tab {
  display: none;
}
div.fm-dlg-tabbar {
  user-select: none;
  left: 0px;
  margin-left: 1px;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
}
div.fm-dlg-tabbar span.tab {
  box-sizing: border-box;
  background-color: #ffffff;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  border: solid 1px #9a9dae;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  height: 24px;
  margin-left: 1px;
  padding: 4px 10px 0px 10px;
  position: relative;
  top: 2px;
  transition: background-color var(--transition-fast);
}
div.fm-dlg-tabbar span.tab:hover {
  background-color: #fafafa;
}
div.fm-dlg-tabbar span.tabOn {
  background-color: #fafafa;
  border-bottom: solid 1px #fafafa;
  border-left: solid 1px #9a9dae;
  border-right: solid 1px #9a9dae;
  border-top: solid 3px #ff9900;
  cursor: default;
  font-weight: 500;
  height: 27px;
  top: 0px;
}
div.fm-dlg-panel {
  background-color: #ffffff;
  border: solid 1px #a6a6a6;
  border-radius: var(--radius-sm);
  bottom: 34px;
  left: 2px;
  padding: 6px 9px 9px 6px;
  position: absolute;
  right: 2px;
  top: 2px;
}
div.fm-dlg-buttons {
  bottom: 0px;
  position: absolute;
  right: 5px;
}
div.fm-dlg-buttons > .fm-btn {
  min-width: 70px;
}
div.fm-dlg-buttons > .fm-btn + .fm-btn {
  margin-left: 5px;
}
div.fm-dlg-footer > div.fm-dlg-buttons {
  margin-left: auto;
  position: static;
}
div.fm-split-panel {
  display: flex;
  flex-direction: column;
}
div.fm-split-panel > .fm-toolbar {
  flex-shrink: 0;
}
div.fm-split-panel > .fm-split-panel-content {
  flex: 1;
  min-height: 0;
  overflow: auto;
}
div.fm-dlg-info {
  background-color: #ffebcc;
  border-radius: var(--radius-sm);
  border: solid 1px #737373;
  color: #404040;
  padding: 6px;
}
span.fm-dlg-p-FL1 {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  vertical-align: text-bottom;
  width: 14px;
}
span.fm-dlg-p-L1 {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  vertical-align: text-bottom;
  width: 14px;
}
span.fm-dlg-p-R1 {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  vertical-align: text-bottom;
  width: 20px;
}
span.fm-dlg-p-LR1 {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  vertical-align: text-bottom;
  width: 14px;
}
table.fm-dlg-grid-hdr {
  background: linear-gradient(to bottom, #e6e6e6, #d4d4d4);
  border-left: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  border-top: 1px solid #bfbfbf;
  table-layout: fixed;
  width: 100%;
}
table.fm-dlg-grid-hdr td {
  height: 22px;
  overflow: hidden;
  padding: 0 0 2px 5px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 12px;
  border-right: 1px solid #a6a6a6;
}
table.fm-dlg-grid-hdr td.clear {
  background-image: none;
  border-right: none;
}
div.fm-dlg-grid-panel {
  border-bottom: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  overflow-y: scroll;
}
table.fm-dlg-grid {
  cursor: default;
  table-layout: fixed;
  width: 100%;
}
table.fm-dlg-grid td {
  overflow: hidden;
  padding: 4px 0px 4px 5px;
  white-space: nowrap;
}
table.fm-dlg-grid tr {
  height: 26px;
  transition: background-color var(--transition-fast);
}
table.fm-dlg-grid tr:hover {
  background-color: #e6e6e6;
}
table.fm-dlg-grid tr.sel {
  background-color: #bfbfbf;
  color: #404040;
}
div.fm-dlg-bg {
  background: linear-gradient(to bottom, #ffffff, #e6e6e6);
}
div.fm-dlg-sec-bg {
  background: linear-gradient(to bottom, #fafafa, #bee2ff);
}
fieldset.fm-dlg-sec-bg {
  background: linear-gradient(to bottom, #fafafa, #bee2ff);
}
a.fm-link {
  color: #0086f1;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition-fast);
}
a.fm-link:hover {
  color: #004d8b;
}
div.fm-dlg-content {
  user-select: none;
  background-color: #ffffff;
  border: solid 1px #70758b;
  bottom: 31px;
  cursor: default;
  left: 0;
  position: absolute;
  right: 0;
  top: 29px;
}
div.fm-dlg-hdr {
  background-color: #bee2ff;
  border-left: solid 1px #70758b;
  border-right: solid 1px #70758b;
  border-top: solid 1px #70758b;
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
}
div.fm-dlg-hdr label {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 500;
  margin: 8px 0px 5px 10px;
}
div.mwnd {
  background-color: var(--color-bg-light);
  border: solid 1px var(--color-border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: absolute;
  width: 100%;
}
div.mwnd div.hdr {
  user-select: none;
  background: linear-gradient(to bottom, var(--window-hdr), var(--window-hdr-2));
  cursor: default;
  height: 30px;
  position: absolute;
  width: 100%;
}
div.mwnd div.hdr span.label {
  display: block;
  font-size: 11pt;
  font-style: italic;
  font-weight: 500;
  height: 27px;
  padding-left: 10px;
  padding-top: 6px;
  width: 80%;
  color: #ffffff;
}
div.mwnd div.hdr span.buttons {
  cursor: pointer;
  position: absolute;
  right: 3px;
  top: 0px;
  float: right;
}
div.mwnd div.hdr span.buttons a.wndBtn {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
div.mwnd div.hdr span.buttons a.wndBtn svg {
  width: 16px;
  height: 16px;
}
div.mwnd div.hdr span.buttons a.wndBtn:hover {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
div.mwnd div.hdr span.buttons a.wndClose:hover {
  background-color: #e50000;
  color: #ffffff;
}
div.mwnd div.hdr span.buttons a.wndMaximize:hover {
  background-color: #b8860b;
  color: #ffffff;
}
div.mwnd div.hdr span.buttons a.wndIncident:hover {
  background-color: #1a7f3c;
  color: #ffffff;
}
div.mwnd-body {
  bottom: 3px;
  left: 3px;
  position: absolute;
  right: 3px;
  top: 33px;
}
a.wnd-I {
  display: inline-block;
  height: 18px;
  width: 27px;
}
a.wnd-I:hover {
  background-position: 0px -18px;
}
a.wnd-M {
  display: inline-block;
  height: 18px;
  width: 24px;
}
a.wnd-M:hover {
  background-position: -27px -18px;
}
a.wnd-Mn {
  display: inline-block;
  height: 18px;
  width: 24px;
}
a.wnd-Mn:hover {
  background-position: -51px -18px;
}
a.wnd-X {
  display: inline-block;
  height: 18px;
  width: 44px;
}
a.wnd-X:hover {
  background-position: -99px -18px;
}
div.wnd-pnl {
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  position: absolute;
}
div.wnd-pnl-X {
  background-repeat: no-repeat;
  cursor: pointer;
  height: 20px;
  position: absolute;
  right: 6px;
  top: 5px;
  width: 20px;
}
div.wnd-n {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: absolute;
}
html {
  margin: 0;
  padding: 0;
}
form {
  margin: 0;
  padding: 0;
}
label {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
a {
  color: var(--accent-light);
  margin: 0;
  padding: 0;
  transition: color var(--transition-fast);
}
a:hover {
  color: #004d8b;
}
ul {
  margin: 0;
  padding: 0;
}
ol {
  margin: 0;
  padding: 0;
}
li {
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--color-bg-light);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  height: 100%;
  margin: 0;
  max-height: 100%;
  overflow: hidden;
  padding: 0;
}
#header {
  background: linear-gradient(180deg, var(--header-bg), var(--header-bg-2)) !important;
  font-family: var(--font-ui);
  height: 50px;
  width: 100%;
  overflow: hidden;
}
#appTitle {
  color: #ffffff;
  background-color: transparent;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
#appDesc {
  color: #9fb6d6;
  background-color: transparent;
  font-size: 11px;
  line-height: 1.3;
}
#logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40px;
  width: 40px;
  margin: 9px 0 0 14px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid var(--emblem-gold);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
#slogan {
  left: 66px;
  position: absolute;
  top: 8px;
}
#top_menu {
  background-color: var(--nav-bg);
  border-top: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.06);
  font-family: var(--font-ui);
  position: absolute;
  top: 50px;
  left: 0;
  height: 36px;
  width: 100%;
  padding-left: 6px;
}
#content {
  overflow-y: auto;
  position: absolute;
  top: 86px;
  width: 100%;
  padding: 0;
}
div#app_admin_btn {
  cursor: pointer;
  height: 24px;
  left: 0px;
  position: relative;
  padding-top: 5px;
  width: 24px;
  transition: opacity var(--transition-fast);
}
div#app_admin_btn [data-lucide] {
  width: 18px;
  height: 18px;
  margin: 3px;
  color: #bfbfbf;
  stroke-width: 1.5;
  pointer-events: none;
}
div#app_admin_btn:hover [data-lucide] {
  color: #ffffff;
}
.admin-dd {
  position: absolute;
  display: none;
  width: 215px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1002;
  font-family: var(--font-ui);
  font-size: 13px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 130ms ease, transform 130ms ease;
}
.admin-dd.admin-dd--up {
  transform: translateY(4px);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.admin-dd.open {
  opacity: 1;
  transform: translateY(0);
}
.admin-dd-hdr {
  padding: 7px 12px 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.admin-dd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 90ms ease;
}
.admin-dd-item:hover {
  background: var(--accent-stronglight);
  color: var(--accent-darken);
}
.admin-dd-item svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
  color: var(--color-text-muted);
  flex-shrink: 0;
  pointer-events: none;
  transition: color 90ms ease;
}
.admin-dd-item:hover svg {
  color: var(--accent);
}
.admin-dd-item .admin-dd-gap {
  width: 14px;
  flex-shrink: 0;
}
.admin-dd-item.is-active {
  font-weight: 600;
  color: var(--accent-darken);
}
.admin-dd-item.is-active svg {
  color: var(--accent);
}
.admin-dd-sep {
  height: 1px;
  background: var(--color-border);
  margin: 3px 0;
}
#separator {
  display: none;
}
#footer {
  background: var(--footer-bg);
  border-top: solid 1px rgba(255, 255, 255, 0.06);
  bottom: 0px;
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 11.5px;
  height: 30px;
  position: absolute;
  width: 100%;
}
#footer_status {
  float: left;
  left: 5px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#userInfo {
  color: #bfbfbf !important;
  float: right;
  font-size: 13px;
  margin-right: 15px;
  position: relative;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}
#userInfo span {
  display: inline-flex;
  align-items: center;
  margin-left: 25px;
}
.switcher-chip {
  color: inherit;
  border-radius: var(--radius-lg);
  padding: 2px 6px;
  margin: -2px -6px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.switcher-chip label {
  cursor: pointer;
}
.switcher-chip:hover,
.switcher-chip.is-open {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
div.dialogWithDropShadow {
  border-color: #58b5ff;
  box-shadow: var(--shadow-lg);
}
BUTTON {
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  overflow: hidden;
  padding-bottom: 2px;
  white-space: nowrap;
}
a.btn {
  background: url(../images/button.gif) no-repeat center center;
  color: var(--color-text);
  display: block;
  font-weight: 500;
  outline: none;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  width: 144px;
}
a.btn:hover {
  color: #ffffff;
}
a#App_LoginButton {
  color: #bfbfbf;
  margin-left: 25px;
  transition: color var(--transition-fast);
}
a#App_LoginButton:hover {
  color: #58b5ff;
}
.app-menu {
  overflow: hidden;
  padding: 0 6px;
  position: relative;
  white-space: nowrap;
}
.app-menu li {
  cursor: pointer;
  float: left;
  height: 36px;
  list-style: none;
}
.app-menu li a {
  border-bottom: 3px solid transparent;
  color: #9fb1cd;
  display: block;
  float: left;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  height: 36px;
  line-height: 36px;
  outline: none;
  padding: 0 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  z-index: 10;
}
.app-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--tab-active);
  color: #ffffff;
}
.app-menu li a.active {
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: var(--tab-active);
  color: #ffffff;
  font-weight: 600;
}
#LanguageBar {
  position: absolute;
  top: 7px;
  right: 14px;
  display: none;
}
#LanguageBar a {
  color: #e6e6e6;
  font-family: var(--font-ui);
  margin-right: 8px;
  text-decoration: none;
  transition: color var(--transition-fast);
}
#LanguageBar a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#LanguageBar label {
  color: #ffffff;
  font-weight: 500;
  margin-right: 8px;
}
#linksMenu {
  position: absolute;
  top: 21px;
  right: 14px;
  z-index: 1000;
}
#linksMenu a {
  color: #bccbe2;
  font-size: 12.5px;
  font-weight: 500;
  margin: 0 8px 0 0;
  padding: 0 2px;
  text-decoration: none;
  transition: color var(--transition-fast);
}
#linksMenu a:hover {
  color: #ffffff;
}
#content > .content {
  border-left: 10px solid var(--color-bg-light);
  border-top: 12px solid var(--color-bg-light);
  background: var(--color-bg-light);
}
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.fm-pill {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.fm-pill.is-ok {
  background: var(--pill-ok-bg);
  color: var(--pill-ok-fg);
}
.fm-pill.is-warn {
  background: var(--pill-warn-bg);
  color: var(--pill-warn-fg);
}
.fm-pill.is-info {
  background: var(--pill-info-bg);
  color: var(--pill-info-fg);
}
.fm-pill.is-revert {
  background: var(--pill-revert-bg);
  color: var(--pill-revert-fg);
}
.fm-pill.is-bad {
  background: var(--pill-bad-bg);
  color: var(--pill-bad-fg);
}
.fm-pill.is-neutral {
  background: var(--pill-neutral-bg);
  color: var(--pill-neutral-fg);
}
.fm-pill.fm-pill-lg {
  height: 24px;
  padding: 0 12px;
  font-size: 12.5px;
}
div.auth-dialog {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  margin: 80px auto 0 auto;
  padding: 20px 22px 18px 22px;
  background: var(--color-bg);
  border-radius: var(--radius-card);
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  opacity: 1;
  transition: opacity 300ms ease;
}
div.auth-dialog.htmx-swapping,
div.auth-dialog.htmx-settling {
  opacity: 0;
}
div.auth-dialog--wide {
  max-width: 560px;
}
div.auth-dialog--panel {
  margin: 0;
  max-width: 380px;
  width: 100%;
}
div.auth-dialog--message {
  max-width: 470px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.auth-form__title + .auth-form__feedback {
  margin-top: -14px;
}
.auth-form__field > label.is-required::after {
  content: " *";
  color: var(--strong-light);
}
.auth-form__hint {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-faint);
}
.auth-form__strength {
  font-size: 12px;
  font-weight: 600;
  min-height: 16px;
}
.auth-form__strength.is-tooshort {
  color: var(--strong-light);
}
.auth-form__strength.is-weak {
  color: var(--warning-darken);
}
.auth-form__strength.is-fair {
  color: var(--color-text-secondary);
}
.auth-form__strength.is-good {
  color: var(--accent);
}
.auth-form__strength.is-strong {
  color: var(--pill-ok-fg);
}
.auth-form__feedback {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 18px;
  font-size: 12px;
}
.auth-form__status {
  color: var(--color-text-faint);
}
.auth-form__error {
  color: var(--strong-light);
  font-weight: 600;
}
.auth-form__title {
  margin: 0 0 2px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}
.auth-form__message {
  padding: 8px 10px;
  border-radius: var(--radius-md);
  background: var(--color-bg-accent);
  color: var(--color-text-secondary);
  font-size: 12px;
}
.auth-form__message.is-sent {
  background: var(--pill-info-bg);
  color: var(--pill-info-fg);
}
.auth-form__message.is-error {
  background: var(--pill-bad-bg);
  color: var(--pill-bad-fg);
  font-weight: 600;
}
.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-form__field > label {
  font-weight: 600;
  font-size: 12px;
  color: var(--color-text-secondary);
}
.auth-form__field--inline {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.auth-form__field--inline > label {
  font-weight: normal;
  color: var(--color-text);
  cursor: pointer;
}
.auth-form__forgot {
  align-self: flex-end;
  font-size: 12px;
}
.auth-form__actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}
.auth-form__actions > a.auth-form__link {
  align-self: center;
  font-size: 12px;
}
.auth-form__actions.auth-form__actions--center {
  justify-content: center;
}
.auth-form__actions.auth-form__actions--end {
  justify-content: flex-end;
}
.auth-form__register {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 1px;
}
.auth-form__register-prompt {
  font-weight: 600;
  color: var(--color-text-secondary);
}
.auth-form__buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.auth-split {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
}
@media (max-width: 860px) {
  .auth-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 20px 16px;
  }
  .auth-split > .auth-split__info {
    order: 2;
  }
  .auth-split > .auth-dialog--panel {
    order: 1;
    justify-self: stretch;
    max-width: none;
  }
}
.auth-split__info {
  min-width: 0;
  color: var(--color-text-secondary);
}
.auth-split__product {
  margin: 0 0 4px 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--strong);
}
.auth-split__area {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}
.auth-split__lede {
  margin: 0 0 22px 0;
  max-width: 60ch;
}
.auth-split__features-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}
.auth-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.auth-split__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.auth-split__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}
.auth-split__icon > svg {
  width: 22px;
  height: 22px;
}
.auth-split__item:hover .auth-split__icon {
  color: var(--accent);
}
.auth-split__item-heading {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}
.auth-split__item-text {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: var(--color-text-secondary);
}
.auth-split__links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--color-text-faint);
}
.auth-split__link {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
}
.auth-split__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-split__link:focus-visible {
  outline: 2px solid var(--focus-border);
  outline-offset: 2px;
  text-decoration: none;
}
.auth-split__link-sep {
  color: var(--color-text-faint);
  user-select: none;
}
a.auth-form__link {
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-fast);
}
a.auth-form__link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}
a.auth-form__link:focus-visible {
  outline: 2px solid var(--focus-border);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.cd {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-light);
}
.cd-subhead {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 20px 0;
  flex: none;
}
.cd-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 12.5px;
}
.cd-crumb a {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.cd-crumb span.sep {
  color: #c2cad6;
}
.cd-crumb .cd-crumb-id {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}
.cd-titlerow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 13px;
}
.cd-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.cd-meta {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--color-text-muted);
}
.cd-meta b {
  color: var(--color-text);
  font-weight: 600;
}
.cd-meta b.mono {
  color: var(--accent);
}
.cd-actions {
  display: flex;
  gap: 8px;
  flex: none;
  margin-left: auto;
}
.cd-btn {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--color-border-input);
  background: var(--color-bg);
  color: var(--color-text-secondary);
  font: 600 13px var(--font-ui);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.cd-btn:hover {
  background: #f4f6f9;
}
.cd-btn.is-approve {
  border: none;
  background: var(--pill-ok-fg);
  color: #fff;
  padding: 0 16px;
  box-shadow: 0 1px 2px rgba(29, 122, 64, 0.3);
}
.cd-btn.is-approve:hover {
  background: #18632f;
}
.cd-btn.is-revert {
  border-color: #d9b67a;
  background: #fdf6e9;
  color: var(--warning);
}
.cd-btn.is-revert:hover {
  background: #fbeed1;
}
.cd-btn-icon {
  width: 38px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.cd-tabs {
  display: flex;
  gap: 2px;
}
.cd-tab {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.cd-tab:hover {
  color: var(--color-text);
}
.cd-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.cd-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cd-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cd-aside {
  width: 316px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cd-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 18px 20px;
}
.cd-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}
.cd-stepper {
  display: flex;
  align-items: flex-start;
}
.cd-step {
  flex: 1;
  min-width: 0;
}
.cd-step-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.cd-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex: none;
  background: var(--color-border-input);
  color: #fff;
}
.cd-dot.is-done {
  background: var(--pill-ok-fg);
}
.cd-dot.is-current {
  background: var(--accent);
}
.cd-dot.is-future {
  background: var(--color-border-input);
  color: var(--color-bg);
}
.cd-line {
  flex: 1;
  height: 3px;
  background: #e3e7ee;
}
.cd-line.is-passed {
  background: var(--pill-ok-fg);
}
.cd-step-label {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--color-text);
}
.cd-step-label.is-future {
  color: var(--color-text-disabled);
}
.cd-step-when {
  font-size: 11px;
  color: var(--color-text-disabled);
  margin-top: 2px;
}
.cd-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
}
.cd-field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.cd-field-val {
  font-size: 13.5px;
  color: var(--color-text);
}
.cd-field-val.mono {
  color: var(--accent);
  font-weight: 600;
}
.cd-activity-item {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #f0f3f7;
}
.cd-dot-sm {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pill-ok-fg);
  margin-top: 5px;
  flex: none;
}
.cd-activity-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.cd-activity-meta {
  font-size: 12px;
  color: var(--color-text-faint);
  margin-top: 1px;
}
.cd-aside .cd-card {
  padding: 16px 18px;
}
.cd-aside-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cd-sla {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 10px 0 6px;
}
.cd-sla-ok {
  font-weight: 600;
  color: var(--pill-ok-fg);
}
.cd-sla-track {
  height: 7px;
  background: var(--color-bg-light);
  border-radius: 4px;
  overflow: hidden;
}
.cd-sla-fill {
  height: 100%;
  background: var(--pill-ok-fg);
  border-radius: 4px;
}
.cd-officer {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cd-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2c4f86;
  color: #cfe0f6;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cd-quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.cd-quick-item .cd-glyph {
  color: var(--accent);
}
.cd-quick-item:hover {
  background: #f4f6f9;
}
.cd-table {
  width: 100%;
  border-collapse: collapse;
}
.cd-table thead th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 12px;
  height: 34px;
  background: var(--color-bg-accent);
  border-bottom: 1px solid var(--color-border);
}
.cd-table tbody td {
  padding: 0 12px;
  height: 46px;
  font-size: 12.5px;
  color: var(--color-text);
  border-bottom: 1px solid #f3f5f8;
}
.cd-table .num {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
}
:root {
  --accent: #0078d7;
  --accent-light: #0086f1;
  --accent-lighten: #58b5ff;
  --accent-mediumlight: #8accff;
  --accent-stronglight: #bee2ff;
  --accent-darken: #004d8b;
  --accent-dark: #001d34;
  --header-bg: #003158;
  --header-bg-2: #0d264e;
  --footer-bg: #003f71;
  --nav-bg: #0b1f42;
  --tab-active: #5b9fe0;
  --focus-border: #2f6fd0;
  --window-hdr: #0078d7;
  --window-hdr-2: #004d8b;
  --color-bg: #ffffff;
  --color-bg-accent: #fafafa;
  --color-bg-light: #e6e6e6;
  --color-bg-lighten: #bfbfbf;
  --color-border: #bfbfbf;
  --color-border-input: #a6a6a6;
  --color-border-dark: #a6a6a6;
  --color-text: #000000;
  --color-text-secondary: #46505f;
  --color-text-muted: #404040;
  --color-text-faint: #737373;
  --color-text-disabled: #a8abb9;
  --table-head-bg: #f4f6f9;
  --row-zebra: #fafbfc;
  --row-selected: #dbe9fb;
  --tree-active-bg: #e8eef7;
  --warning: #ff9900;
  --warning-darken: #e68a00;
  --warning-light: #ffebcc;
  --strong: #990000;
  --strong-light: #e50000;
  --medium: #9b4e00;
  --amber-accent: #d99100;
  --pill-ok-bg: #e4f4ea;
  --pill-ok-fg: #1d7a40;
  --pill-warn-bg: #fbeed1;
  --pill-warn-fg: #8a6300;
  --pill-info-bg: #e4edfb;
  --pill-info-fg: #1d5cb8;
  --pill-revert-bg: #fbe3d6;
  --pill-revert-fg: #a8481d;
  --pill-bad-bg: #fbdede;
  --pill-bad-fg: #b3261e;
  --pill-neutral-bg: #eef1f5;
  --pill-neutral-fg: #5b6776;
  --emblem-gold: #c9a24b;
  --font-ui: 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --font-size-base: 13px;
  --line-height-base: 1.45;
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 6px;
  --radius-card: 9px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-btn: 0 1px 2px rgba(21, 53, 107, 0.3);
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
}
.mg-side5 {
  margin-left: 5px;
  margin-right: 5px;
}
.mg-side4 {
  margin-left: 4px;
  margin-right: 4px;
}
.mg-side3 {
  margin-left: 3px;
  margin-right: 3px;
}
.mg-side2 {
  margin-left: 2px;
  margin-right: 2px;
}
.mg-side1 {
  margin-left: 1px;
  margin-right: 1px;
}
.mg-top5 {
  margin-top: 5px;
}
.mg-top4 {
  margin-top: 4px;
}
.mg-top3 {
  margin-top: 3px;
}
.mg-top2 {
  margin-top: 2px;
}
.mg-top1 {
  margin-top: 1px;
}
