:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --line: #dbe3ee;
  --line-strong: #c9d4e3;
  --text: #142033;
  --muted: #667085;
  --nav-bg: #0f172a;
  --nav-hover: #1e293b;
  --nav-active: #24324a;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --dark-btn: #111827;
  --dark-btn-hover: #1f2937;
  --ok: #15803d;
  --warn: #b45309;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 18px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Malgun Gothic", sans-serif;
  font-size: 15px;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #8db2ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

textarea {
  resize: vertical;
}

.app-shell {
  display: grid;
  grid-template-columns: 244px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: #f8fafc;
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.brand {
  margin-bottom: 26px;
  padding: 6px 6px 14px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 6px;
  color: #94a3b8;
  font-size: 0.92rem;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar nav li + li {
  margin-top: 8px;
}

.sidebar a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}

.sidebar a:hover {
  background: var(--nav-hover);
}

.sidebar a.active {
  background: var(--nav-active);
  color: #fff;
}

.content {
  padding: 30px 34px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-desc {
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-chip {
  min-width: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.stat-chip strong {
  font-size: 1.2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.hero-card {
  padding: 18px 20px 14px 20px;
}

.toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
}

.field-block {
  min-width: 160px;
}

.field-block label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.field-date {
  min-width: 180px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 11px;
  background: #eef2f7;
  color: var(--text);
  font-weight: 700;
  border: 1px solid var(--line);
}

.btn:hover {
  background: #e6ebf3;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-dark {
  background: var(--dark-btn);
  color: #fff;
  border-color: var(--dark-btn);
}

.btn-dark:hover {
  background: var(--dark-btn-hover);
}

.btn-full {
  width: 100%;
}

.sub-guide {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bulk-card {
  padding-top: 16px;
  padding-bottom: 16px;
}

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}

.bulk-action {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-wrap {
  overflow: auto;
  max-height: 68vh;
}

.work-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: separate;
  border-spacing: 0;
}

.work-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #eff4fb;
  color: #334155;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.88rem;
  white-space: nowrap;
}

.work-table tbody td {
  border-bottom: 1px solid #edf2f7;
  padding: 8px;
  background: #fff;
  vertical-align: middle;
}

.work-table tbody tr:hover td {
  background: #f8fbff;
}

.row-selected td {
  background: #eef5ff !important;
}

.work-table input,
.work-table textarea,
.work-table select {
  width: 100%;
  min-width: unset;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
}

.work-table textarea {
  min-height: 42px;
}

.w-check { width: 66px; }
.w-seq { width: 70px; }
.w-part { width: 180px; }
.w-lot { width: 170px; }
.w-rpu { width: 130px; }
.w-qty { width: 120px; }
.w-final { width: 170px; }
.w-worker { width: 150px; }
.w-eq { width: 120px; }
.w-kms { width: 80px; }
.w-remark { width: 220px; }

.num {
  text-align: right;
}

.center {
  text-align: center;
}

.final-cell {
  font-weight: 800;
  color: #0f172a;
  background: #f8fbff;
}

.preview-card {
  padding: 18px 20px 20px 20px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.status-line {
  margin-top: 6px;
  font-weight: 800;
}

.status-ok {
  color: var(--ok);
}

.status-warn {
  color: var(--warn);
}

.preview-count {
  color: var(--muted);
  font-weight: 700;
}

.preview-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.preview-box {
  width: 100%;
  min-height: 180px;
  background: #0f172a;
  color: #e2e8f0;
  border: 0;
  border-radius: 14px;
  padding: 16px;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.grid-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.grid-table th,
.grid-table td {
  border-bottom: 1px solid #edf2f7;
  padding: 10px 8px;
  vertical-align: middle;
}

.grid-table th {
  background: #eff4fb;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media (max-width: 1400px) {
  .page-header {
    flex-direction: column;
  }

  .page-badges {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    border-right: 0;
  }

  .content {
    padding: 20px 16px;
  }

  .bulk-grid {
    grid-template-columns: 1fr;
  }
}


/* master lock */
.master-lock-card {
  padding: 28px;
}

.master-lock-wrap {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: center;
}

.master-lock-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

.master-lock-desc {
  color: #475569;
  line-height: 1.6;
}

.master-lock-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.master-lock-input {
  min-height: 42px;
}

.table-size-card {
  padding-top: 12px;
  padding-bottom: 12px;
}

.table-size-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.size-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.size-desc {
  color: var(--muted);
  font-size: 0.9rem;
}

.height-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.height-label {
  color: var(--muted);
  font-weight: 700;
}

.btn-mini {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 8px;
}

.selection-tip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 260px;
  padding: 10px 14px;
  border: 1px solid #c8d8ff;
  border-radius: 12px;
  background: #f5f9ff;
  color: #3756a8;
}

.work-table {
  table-layout: fixed;
}

.work-table thead th,
.work-table tbody td {
  height: var(--row-height, 58px);
}

.work-table thead th {
  position: sticky;
  top: 0;
  z-index: 5;
}

.work-table .resizable-col {
  position: sticky;
  top: 0;
  overflow: visible;
}

.col-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  width: 8px;
  height: 100%;
  cursor: col-resize;
  z-index: 10;
}

.col-resizer::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 3px;
  width: 2px;
  background: rgba(148, 163, 184, 0.55);
  border-radius: 2px;
}

.col-resizer:hover::after,
body.col-resizing .col-resizer::after {
  background: #2563eb;
}

.work-table td.cell-active {
  background: #fff8c5 !important;
  box-shadow: inset 0 0 0 2px #ffb800;
}

.work-table td.cell-active input,
.work-table td.cell-active textarea,
.work-table td.cell-active select {
  border-color: #ffb800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.18);
  background: #fffef2;
}

.work-table textarea {
  resize: vertical;
}

.work-table input[type="checkbox"] {
  width: 22px;
  height: 22px;
}

#autopack-work-table .w-check { width: var(--col-check, 72px); }
#autopack-work-table .w-seq { width: var(--col-seq, 74px); }
#autopack-work-table .w-part { width: var(--col-part, 230px); }
#autopack-work-table .w-lot { width: var(--col-lot, 160px); }
#autopack-work-table .w-rpu { width: var(--col-rpu, 140px); }
#autopack-work-table .w-qty:nth-of-type(6) { width: var(--col-packqty, 120px); }
#autopack-work-table .w-qty:nth-of-type(7) { width: var(--col-remainqty, 120px); }
#autopack-work-table .w-final { width: var(--col-finalqty, 190px); }
#autopack-work-table .w-worker { width: var(--col-worker, 150px); }
#autopack-work-table .w-eq { width: var(--col-eq, 140px); }
#autopack-work-table .w-kms { width: var(--col-kms, 80px); }
#autopack-work-table .w-remark { width: var(--col-remark, 220px); }

@media (max-width: 1180px) {
  .table-size-row {
    grid-template-columns: 1fr;
  }

  .height-controls {
    flex-wrap: wrap;
  }
}


/* ===== 2026-04-13 디자인 2차 보정 ===== */
:root {
  --bg: #f3f6fb;
  --card: rgba(255,255,255,0.92);
  --line: #d9e2ee;
  --line-strong: #c6d2e1;
  --text: #17253a;
  --muted: #66758c;
  --nav-bg: linear-gradient(180deg, #0b1220 0%, #0f1a2e 100%);
  --nav-hover: rgba(255,255,255,0.06);
  --nav-active: rgba(86, 132, 255, 0.18);
  --primary: #2f5bea;
  --primary-dark: #2448bc;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --dark-btn: #0f172a;
  --dark-btn-hover: #1e293b;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
}

html, body {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.07), transparent 24%),
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.06), transparent 22%),
    var(--bg);
  color: var(--text);
}

body {
  letter-spacing: -0.01em;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  width: 210px;
  padding: 18px 12px;
  background: var(--nav-bg);
  box-shadow: 8px 0 28px rgba(2, 6, 23, 0.26);
}

.brand {
  margin: 4px 4px 18px;
  padding: 16px 14px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fbff;
  line-height: 1.1;
}

.brand-sub {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.78);
  letter-spacing: -0.01em;
}

.sidebar .nav-link,
.sidebar a.nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 6px 2px;
  padding: 0 14px;
  border-radius: 14px;
  color: rgba(236, 243, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, color .18s ease, box-shadow .18s ease;
}

.sidebar .nav-link:hover,
.sidebar a.nav-link:hover {
  background: var(--nav-hover);
  color: #ffffff;
  transform: translateX(2px);
}

.sidebar .nav-link.active,
.sidebar a.nav-link.active,
.sidebar .nav-link[aria-current="page"],
.sidebar a.nav-link[aria-current="page"] {
  background: linear-gradient(180deg, rgba(79, 110, 255, 0.30), rgba(79, 110, 255, 0.18));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(44, 82, 180, 0.22);
}

.content {
  padding: 28px 32px 40px;
}

.page-header {
  margin-bottom: 14px;
}

.page-header h1,
.page-title,
h1 {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 8px;
  color: #13233a;
}

.page-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.page-badges {
  gap: 12px;
}

.stat-chip {
  min-width: 110px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(198, 210, 225, 0.95);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}

.stat-chip strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-label {
  color: #76859c;
  font-weight: 700;
  font-size: 0.84rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(198, 210, 225, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card,
.table-size-card,
.table-card,
.preview-card {
  overflow: hidden;
}

.toolbar-row {
  gap: 12px;
  align-items: end;
}

.field-block label {
  font-size: 0.86rem;
  font-weight: 800;
  color: #5f6f87;
  margin-bottom: 6px;
}

.button-group {
  gap: 8px;
}

.btn {
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  background: linear-gradient(180deg, #3a6cff 0%, #2f5bea 100%);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #315fe6 0%, #284ccc 100%);
}

.btn-dark {
  background: linear-gradient(180deg, #16233a 0%, #0f172a 100%);
}

.btn-dark:hover {
  background: linear-gradient(180deg, #1c2d48 0%, #172237 100%);
}

.btn-accent {
  background: linear-gradient(180deg, #128579 0%, #0f766e 100%);
}

.sub-guide,
.size-desc,
.selection-tip span {
  color: #718198;
}

.top-status {
  border-radius: 14px !important;
  box-shadow: none;
}

.table-wrap {
  border-radius: 18px;
}

.work-table {
  border-collapse: separate;
  border-spacing: 0;
}

.work-table thead th {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  color: #334155;
  font-weight: 800;
  border-bottom: 1px solid #d5e0ec;
}

.work-table tbody tr {
  transition: background .12s ease;
}

.work-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.03);
}

.work-table input,
.work-table textarea,
.work-table select {
  border-radius: 12px;
  border-color: #cbd7e6;
  background: rgba(255,255,255,0.96);
}

.work-table input:focus,
.work-table textarea:focus,
.work-table select:focus {
  border-color: #82a9ff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
}

.final-cell {
  font-weight: 800;
  color: #14233a;
}

.preview-head {
  align-items: center;
}

.preview-box {
  min-height: 150px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.status-line {
  font-weight: 800;
}

@media (max-width: 1200px) {
  .sidebar {
    width: 190px;
  }

  .content {
    padding: 22px 20px 30px;
  }

  .page-header h1,
  .page-title,
  h1 {
    font-size: 1.85rem;
  }
}

/* ===== 2026-04-13 디자인 3차 미세보정 ===== */

.sidebar {
  width: 238px;
  padding: 16px 12px 20px;
}

.brand {
  margin: 6px 4px 16px;
  padding: 18px 16px 14px;
  border-radius: 20px;
}

.brand-title {
  display: block;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.02;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
  max-width: 100%;
}

.brand-sub {
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.25;
  color: rgba(226, 232, 240, 0.82);
  word-break: keep-all;
}

.sidebar .nav-link,
.sidebar a.nav-link {
  min-height: 50px;
  margin: 7px 2px;
  padding: 0 15px;
  border-radius: 15px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.content {
  padding: 24px 28px 34px;
}

.page-header h1,
.page-title,
h1 {
  font-size: 2.25rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.page-desc {
  font-size: 1rem;
  line-height: 1.45;
  color: #6b7a90;
}

.card {
  border-radius: 24px;
}

.hero-card,
.table-size-card,
.table-card,
.preview-card {
  border: 1px solid rgba(195, 208, 224, 0.95);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.stat-chip {
  border-radius: 20px;
}

.work-table thead th {
  font-size: 0.93rem;
  letter-spacing: -0.02em;
  padding-top: 14px;
  padding-bottom: 14px;
}

.work-table tbody td {
  vertical-align: middle;
}

.work-table input,
.work-table textarea,
.work-table select {
  min-height: 34px;
  border-radius: 13px;
  font-size: 0.96rem;
  padding-left: 12px;
  padding-right: 12px;
}

.work-table textarea {
  padding-top: 8px;
  padding-bottom: 8px;
}

.final-cell {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.top-status {
  border-radius: 16px !important;
  font-size: 0.98rem !important;
  padding: 12px 16px !important;
}

.preview-box {
  border-radius: 16px;
}

@media (max-width: 1400px) {
  .sidebar {
    width: 220px;
  }

  .brand-title {
    font-size: 1.8rem;
  }
}


/* ===== 2026-04-13 마지막 미세보정 ===== */

.work-table thead th {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
  color: #425268;
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  border-bottom: 1px solid #dbe5f0;
}

.work-table input,
.work-table textarea,
.work-table select {
  background: #fbfdff;
  border: 1px solid #cfdae8;
  color: #223047;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.work-table input:hover,
.work-table textarea:hover,
.work-table select:hover {
  border-color: #bccbdd;
  background: #ffffff;
}

.work-table input:focus,
.work-table textarea:focus,
.work-table select:focus {
  border-color: #7ea2ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
  background: #ffffff;
}

.work-table textarea {
  line-height: 1.3;
  resize: vertical;
}

.work-table tbody td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.top-status {
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  border-width: 1px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.top-status-ok {
  background: linear-gradient(180deg, #edfdf3 0%, #e7f8ee 100%) !important;
  color: #0b7a43 !important;
  border-color: #b7e7c8 !important;
}

.top-status-warn {
  background: linear-gradient(180deg, #fff8ea 0%, #fff3dc 100%) !important;
  color: #b45309 !important;
  border-color: #f5d28c !important;
}

.preview-box {
  border: 1px solid #d6e0eb;
  background: linear-gradient(180deg, #fcfdff 0%, #f5f8fc 100%);
}

.table-size-card .size-title,
.preview-label,
.field-block label {
  letter-spacing: -0.02em;
}

.final-cell {
  color: #0f2138;
}

.work-table tbody tr:hover .final-cell {
  color: #0b1b31;
}


/* --- hide blazor reconnect modal --- */
#components-reconnect-modal,
#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected,
.components-reconnect-show,
.components-reconnect-failed,
.components-reconnect-rejected {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

div[id*="reconnect"],
div[class*="reconnect"] {
    display: none !important;
}

/* --- autopack active cell highlight --- */
.work-table td.autopack-active-cell,
.work-table th.autopack-active-cell {
  position: relative;
  background: #fff8db !important;
  box-shadow: inset 0 0 0 2px #f4b400;
}

.work-table td.autopack-active-cell input,
.work-table td.autopack-active-cell textarea,
.work-table td.autopack-active-cell select {
  outline: none !important;
}
