@charset "UTF-8";
:root {
  --ink: #e9e2d8;
  --muted: #c9b899;
  --faint: #6b6053;
  --ok: #4ade80;
  --warn: #e8a04c;
  --err: #e5484d;
  --info: #7a9bd4;
  --line: #2e2721;
  --copper: #e8a04c;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  background: #171310;
  color: #e9e2d8;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 15px;
}

.hidden {
  display: none !important;
}

::selection {
  background: #8a5a24;
  color: #fff;
}

button {
  cursor: pointer;
  font: inherit;
}

:focus-visible {
  outline: 2px solid #e8a04c;
  outline-offset: 2px;
}

input, select {
  font: inherit;
  background: #12100d;
  color: #f2ead9;
  border: 1px solid #3a322a;
  border-radius: 6px;
  padding: 5px 10px;
}

input:focus, select:focus {
  outline: none;
  border-color: #e8a04c;
}

input[type="number"] {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.btn {
  border: 1px solid #3a322a;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  background: #2e2721;
  color: #e9e2d8;
  white-space: nowrap;
}

.btn:hover {
  border-color: #a8722f;
}

.btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  border-color: #2e2721;
}

.btn-green {
  background: #1f7a4d;
  border: none;
  color: #fff;
  font-weight: 700;
}

.btn-amber {
  background: #6b5518;
  border: none;
  color: #f2d38a;
  font-weight: 700;
}

.btn-red {
  background: #5a2320;
  border: none;
  color: #f2a09a;
  font-weight: 700;
}

.btn-dim {
  background: transparent;
  color: #c9b899;
}

.btn-estop {
  background: #e5484d;
  color: #fff;
  border: none;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: 6px;
  min-height: 44px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #3a322a transparent;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #3a322a;
  border-radius: 5px;
  border: 2px solid #171310;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8722f;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

.login-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(1100px 500px at 50% -10%, #221b13 0%, transparent 60%), #171310;
}

.login-card {
  background: #1e1915;
  border: 1px solid #2e2721;
  border-top: 3px solid #e8a04c;
  border-radius: 8px;
  padding: 38px 42px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-card .login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-card .login-brand .brand-name {
  font-size: 24px;
}

.login-card .login-sub {
  color: #8a7d6c;
  font-size: 14px;
  margin: -8px 0 8px;
}

.login-card label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  color: #a89a85;
}

.login-card .btn-green {
  min-height: 44px;
  border-radius: 6px;
  font-size: 15px;
}

.login-card .login-err {
  color: #e5484d;
  font-size: 14px;
  min-height: 1.2em;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-width: 1100px;
}

.topbar {
  height: 56px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  background: #1e1915;
  border-bottom: 1px solid #2e2721;
}

.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
}

.brand-ver {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  background: #2e2721;
  color: #c9b899;
  padding: 3px 8px;
  border-radius: 4px;
}

.statusbar {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.pill {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
}

.pill.pill-on {
  background: #123524;
  color: #4ade80;
}

.pill.pill-on::before {
  content: "● ";
}

.pill.pill-off {
  background: #3d1512;
  color: #f2665f;
}

.pill.pill-off::before {
  content: "● ";
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat .k {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #8a7d6c;
  text-transform: uppercase;
}

.stat .v {
  font-size: 15px;
  font-weight: 600;
}

#top-state.v {
  color: #e8a04c;
}

.boardchips {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bchip {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  background: #123524;
  color: #4ade80;
  border: 1px solid #2b5a3e;
}

.bchip.off {
  background: #3d1512;
  color: #f2665f;
  border-color: #5a2320;
}

.spacer {
  flex: 1;
}

.top-user {
  color: #8a7d6c;
  font-size: 14px;
}

.topbar .btn-dim {
  background: transparent;
  color: #c9b899;
  border: 1px solid #3a322a;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  min-height: 44px;
}

.tabsbar {
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 0 16px;
  background: #211b16;
  border-bottom: 2px solid #3a322a;
}

.tabsbar .tab {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #b8ab98;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tabsbar .tab:hover {
  color: #e9e2d8;
}

.tabsbar .tab.active {
  font-weight: 600;
  color: #e8a04c;
  background: #2e2721;
  border-bottom-color: #e8a04c;
}

.tabsbar .tab.tech-only.locked {
  opacity: .45;
}

.tabsbar .tab.tech-only.locked::after {
  content: " •";
  color: #e8a04c;
}

.tabsbar .tabs-sep {
  width: 1px;
  background: #3a322a;
  margin: 12px 8px;
}

.panels {
  flex: 1;
  overflow: auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.panel {
  display: none;
  padding: 16px;
}

.panel.active {
  display: block;
}

#panel-dashboard.active {
  display: flex;
  padding: 0;
  flex: 1;
  min-height: 0;
}

.offline-banner {
  background: #3a2d13;
  border-bottom: 1px solid #3a322a;
  color: #e8a04c;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  font-size: 14px;
  flex: 0 0 auto;
}

.logbar {
  flex: 0 0 auto;
  height: 150px;
  background: #12100d;
  border-top: 1px solid #2e2721;
  display: flex;
  flex-direction: column;
  transition: height .2s;
}

.logbar.collapsed {
  height: 34px;
}

.logbar.collapsed .log-strip {
  overflow: hidden;
}

.logbar .logbar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  cursor: pointer;
  flex: 0 0 auto;
}

.logbar .logbar-head .t1 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
}

.logbar .logbar-head .t2 {
  font-size: 12px;
  color: #6b6053;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.logbar .logbar-head .collapse {
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 13px;
  color: #c9b899;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.logbar .log-strip {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 16px 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.log-line {
  display: flex;
  gap: 14px;
}

.log-line .t {
  color: #6b6053;
  flex: 0 0 auto;
}

.log-ok {
  color: #4ade80;
}

.log-info {
  color: #c9b899;
}

.log-warn {
  color: #e8a04c;
}

.log-error {
  color: #e5484d;
}

.dash {
  flex: 1;
  display: flex;
  min-height: 0;
  width: 100%;
}

.left-col {
  width: 400px;
  flex: 0 0 auto;
  background: #1a1512;
  border-right: 1px solid #2e2721;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
}

.recipes-sec {
  padding: 14px 16px 12px;
  border-bottom: 1px solid #2e2721;
  flex: 0 0 auto;
}

.recipes-sec > h3 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.recipe-list {
  display: flex;
  gap: 6px;
  max-height: 236px;
  overflow-y: auto;
}

.rl-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-content: start;
}

.recipe-item {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  background: #211b16;
  color: #c9b899;
  border: 1px solid #2e2721;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipe-item:hover {
  border-color: #3a322a;
}

.recipe-item.sel {
  font-weight: 600;
  background: #8a5a24;
  color: #fff;
  border-color: #a8722f;
}

.sel-summary {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  margin-top: 12px;
  color: #c9b899;
  min-height: 1.3em;
}

.sel-summary b {
  color: #f2ead9;
  font-weight: 600;
}

.scale-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.scale-row .btn[data-g] {
  background: #211b16;
  color: #c9b899;
  border: 1px solid #3a322a;
  border-radius: 6px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 0 12px;
  min-height: 40px;
}

.scale-row .btn[data-g].pressed {
  background: #3a322a;
  color: #f2ead9;
}

.scale-row input {
  width: 64px;
  font-size: 14px;
  padding: 0 10px;
  min-height: 40px;
}

.scale-row input {
  flex: 1;
}

.add-row {
  margin-top: 8px;
}

.add-row .btn-green {
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  min-height: 40px;
  padding: 0 14px;
}

.queue-sec {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 16px 10px;
}

.queue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.queue-head h3 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.queue-head .shown {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #8a7d6c;
}

.queue-filters {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  flex: 0 0 auto;
}

.qf {
  background: transparent;
  color: #a89a85;
  border: 1px solid #3a322a;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 7px;
  white-space: nowrap;
}

.qf.on {
  background: #8a5a24;
  color: #fff;
  border-color: #a8722f;
}

.queue-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.queue-cards {
  flex: 1;
  min-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qcard {
  background: #211b16;
  border: 1px solid #2e2721;
  border-left: 3px solid #3a322a;
  border-radius: 6px;
  padding: 9px 12px;
  flex: 0 0 auto;
}

.qcard.s-queued {
  border-left-color: #c9b899;
}

.qcard.s-ongoing {
  border-left-color: #4ade80;
}

.qcard.s-completed {
  border-left-color: #7a9bd4;
}

.qcard.s-cancelled {
  border-left-color: #e5484d;
}

.qcard.s-failed {
  border-left-color: #e5484d;
}

.qcard .row1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qcard .row1 .oid {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 600;
  color: #f2ead9;
}

.qcard .row1 .when {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #8a7d6c;
  flex: 1;
}

.qcard .row1 .qstatus {
  font-size: 12px;
  font-weight: 600;
}

.qcard .row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.qcard .row2 span:first-child {
  font-size: 13px;
  color: #a89a85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.qcard .row2 .wt {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  color: #e9e2d8;
  flex: 0 0 auto;
}

.qcard .qstatus.s-queued {
  color: #c9b899;
}

.qcard .qstatus.s-ongoing {
  color: #4ade80;
}

.qcard .qstatus.s-completed {
  color: #7a9bd4;
}

.qcard .qstatus.s-cancelled, .qcard .qstatus.s-failed {
  color: #e5484d;
}

.qcard .ops {
  display: inline-flex;
  gap: 2px;
  opacity: 0;
  transition: opacity .12s;
}

.qcard .ops button {
  background: none;
  border: 0;
  color: #6b6053;
  padding: 0 3px;
  font-size: 13px;
}

.qcard .ops button:hover {
  color: #e9e2d8;
}

.qcard:hover .ops {
  opacity: 1;
}

.left-foot {
  font-size: 12px;
  color: #6b6053;
  padding: 8px 16px 10px;
  flex: 0 0 auto;
  background: #1a1512;
}

.grid-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 10px;
  gap: 10px;
  overflow: hidden;
}

.grid-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.grid-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex: 0 0 auto;
}

.grid-head .t1 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  text-transform: uppercase;
}

.grid-head .t2 {
  font-size: 13px;
  color: #6b6053;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(172px, auto);
  gap: 10px;
}

.scard {
  background: #1e1915;
  border: 1px solid #2e2721;
  border-top: 3px solid #8a6a3a;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  min-height: 172px;
  overflow: hidden;
}

.scard .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.scard .sid {
  font-size: 13px;
  font-weight: 600;
  color: #a89a85;
}

.scard .mod {
  font-size: 13px;
  color: #6b6053;
  font-weight: 400;
}

.scard .st {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8a7d6c;
  background: #241f1a;
  padding: 2px 8px;
  border-radius: 4px;
}

.scard .st.running {
  color: #4ade80;
  background: #123524;
}

.scard .lbl {
  font-size: 17px;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scard .stock {
  font-size: 12px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.scard .wmid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.scard .w {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 32px;
  font-weight: 600;
  color: #f2ead9;
}

.scard .w .unit {
  font-size: 15px;
  color: #8a7d6c;
}

.scard .bigstate {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8a7d6c;
}

.scard .bigstate.running {
  color: #4ade80;
}

.scard .ops {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.scard .ops .btn {
  flex: 1;
  background: #2e2721;
  color: #e9e2d8;
  border: 1px solid #3a322a;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  min-height: 36px;
  padding: 0;
}

.scard.low {
  border-top-color: #e8a04c;
}

.scard.cvmx {
  background: #1b1a14;
  border-top-color: #3a322a;
}

.scard.cvmx .ops .b-on {
  color: #8fdcb2;
  border-color: #2b5a3e;
  font-weight: 700;
}

.scard.cvmx .ops .b-off {
  background: #3a322a;
  border-color: #3a322a;
  font-weight: 700;
}

.scard.cvmx.running {
  border-color: #2b5a3e;
  border-top-color: #4ade80;
}

.scard.cvmx.running .ops .b-on {
  background: #1f7a4d;
  color: #fff;
}

.scard.cvmx.running .ops .b-off {
  background: #2e2721;
}

.runbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1915;
  border: 1px solid #3a322a;
  border-radius: 8px;
  padding: 10px 14px;
  z-index: 20;
  box-shadow: rgba(0, 0, 0, 0.5) 0 -6px 24px;
}

.runbar .t1 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.runbar .btn {
  flex: 1;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  min-height: 44px;
  border: none;
  padding: 0;
}

.runbar .btn-green {
  background: #1f7a4d;
  color: #fff;
}

.runbar .btn-amber {
  background: #6b5518;
  color: #f2d38a;
}

.runbar #d-resume {
  background: #1c4633;
  color: #8fdcb2;
}

.runbar .btn-red {
  background: #5a2320;
  color: #f2a09a;
}

.runbar .btn-dim {
  background: #2e2721;
  color: #e9e2d8;
  border: 1px solid #3a322a;
  font-weight: 600;
  white-space: nowrap;
}

.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal {
  background: #1e1915;
  border: 1px solid #2e2721;
  border-top: 3px solid #e8a04c;
  border-radius: 8px;
  padding: 24px 28px;
  width: 430px;
}

.modal h2 {
  margin: 0 0 12px;
  color: #e8a04c;
  font-size: 16px;
}

.modal .facts {
  font-size: 14px;
  margin-bottom: 16px;
}

.modal .facts div {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}

.modal .facts b {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.modal .facts input {
  width: 90px;
}

.modal .actions {
  display: flex;
  gap: 8px;
}

.modal .actions .btn {
  flex: 1;
  min-height: 44px;
  padding: 0;
  font-weight: 700;
  border: none;
  border-radius: 6px;
}

.modal .count {
  text-align: right;
  color: #6b6053;
  font-size: 12px;
  margin-top: 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

#toast-root {
  position: fixed;
  right: 18px;
  bottom: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 60;
}

.toast {
  background: #211b16;
  border: 1px solid #2e2721;
  border-left: 3px solid #7a9bd4;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 360px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.toast.error {
  border-left-color: #e5484d;
}

.toast.warn {
  border-left-color: #e8a04c;
}

.toast.ok {
  border-left-color: #4ade80;
}

.card {
  background: #1e1915;
  border: 1px solid #2e2721;
  border-radius: 8px;
  padding: 14px;
}

.card h3 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px 20px;
}

.form-grid label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #a89a85;
  padding: 2px 0;
}

.form-grid input, .form-grid select {
  width: 112px;
}

.toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1250px) {
  .station-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tbl th {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d6c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 400;
  text-transform: uppercase;
}

.tbl th, .tbl td {
  padding: 7px 10px;
  border-bottom: 1px solid #2e2721;
  text-align: left;
}

.tbl td {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.tbl tbody tr:hover td {
  background: #211b16;
}

.tbl tr.alert td {
  color: #e8a04c;
}
