:root {
  --bg: #f4f6f3;
  --surface: #ffffff;
  --surface-soft: #f8f9f7;
  --text: #1c2430;
  --muted: #6f7883;
  --border: #dde2db;
  --accent: #4f9f8c;
  --accent-strong: #3c8f7b;
  --danger: #c44552;
  --link: #355f9a;
  --brand-dark: #161b22;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f7f8f6 0%, #eef1ed 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.brand-header {
  max-width: 1120px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 86px;
  border: 1px solid #24303d;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.brand-left {
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.brand-logo {
  width: 154px;
  max-width: 100%;
  height: auto;
}

.brand-right {
  background: #f8f9f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.95rem 1.2rem;
}

.brand-right h1 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
}

.brand-right p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.95rem 1rem 2rem;
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 3px 14px rgba(21, 35, 53, 0.04);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
}

.hero h2 {
  margin-bottom: 0.55rem;
  font-size: 1.5rem;
}

.hero p {
  margin: 0;
  color: #4f5a67;
  max-width: 90ch;
}

.dropzone {
  display: grid;
  place-items: center;
  border: 1px dashed #c8d1c5;
  border-radius: 12px;
  min-height: 130px;
  margin-bottom: 0.9rem;
  cursor: pointer;
  background: #fafbf9;
  text-align: center;
  padding: 1rem;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.dropzone.dragover {
  border-color: var(--accent);
  background: #edf7f3;
}

.dropzone input,
#folderPicker {
  display: none;
}

.dropzone span {
  font-weight: 700;
  font-size: 1.1rem;
}

.dropzone small {
  color: var(--muted);
  margin-top: 0.45rem;
}

.upload-actions {
  margin: 0 0 0.75rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.upload-actions-top {
  margin-bottom: 0.55rem;
}

.upload-actions-bottom {
  margin: 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
}

.upload-meta {
  margin: 0;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
}

.field-span-2 {
  grid-column: span 2;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.field-label input {
  font-weight: 400;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
}

.submission-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.92rem;
}

.submission-banner dt {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.submission-banner dd {
  margin: 0.1rem 0 0;
}

.checklist-missing {
  color: var(--danger);
  font-weight: 600;
}

.tracker-summary-badge {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text);
}

.tracker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 0.6rem;
}

@media (max-width: 800px) {
  .tracker-grid {
    grid-template-columns: 1fr;
  }
}

.tracker-group-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.tracker-count {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

.tracker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tracker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tracker-item.tracker-received {
  background: #f0faf5;
  border-color: #b7dfd0;
}

.tracker-item.tracker-expected {
  background: #fefcf3;
  border-color: #f0d1aa;
}

.tracker-label {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 500;
}

.tracker-schema-view-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #eef3fc;
  color: #2a4a7a;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.tracker-schema-view-btn:hover {
  background: #e0ebfb;
  border-color: #9eb4d8;
  color: #152849;
}

.tracker-schema-view-btn:focus-visible {
  outline: 2px solid #4a8fd4;
  outline-offset: 2px;
}

.tracker-status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tracker-status-badge.badge-received {
  background: #d1f5e4;
  color: #166534;
  border: 1px solid #a7e8c5;
}

.tracker-status-badge.badge-expected {
  background: #fef3cd;
  color: #856404;
  border: 1px solid #f0d1aa;
}

.tracker-matched-file {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.extraction-cell {
  max-width: 280px;
  font-size: 0.82rem;
  line-height: 1.35;
  word-break: break-word;
}

.extraction-cell-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.extraction-summary {
  flex: 1;
  min-width: 0;
}

.extraction-json-view-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  border: 1px solid #c4cfdf;
  border-radius: 8px;
  background: #eef3fc;
  color: #2a4a7a;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.extraction-json-view-btn:hover {
  background: #e0ebfb;
  border-color: #9eb4d8;
  color: #152849;
}

.extraction-json-view-btn:focus-visible {
  outline: 2px solid #4a8fd4;
  outline-offset: 2px;
}

.extraction-json-modal-card {
  width: min(720px, 94vw);
  height: min(82vh, 720px);
}

.extraction-json-modal-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
  flex: 1;
  max-height: min(62vh, 560px);
}

.extraction-json-modal-body .extraction-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #152849;
  background: #ffffff;
  border: 1px solid #d2dced;
  border-radius: 10px;
  overflow: hidden;
}

.extraction-json-modal-body .extraction-data-table th[scope="row"] {
  width: 38%;
  max-width: 220px;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  color: #2d3f5c;
  background: #f2f5fb;
  border: 1px solid #d8e0f0;
  padding: 0.55rem 0.75rem;
}

.extraction-json-modal-body .extraction-data-table td {
  vertical-align: top;
  border: 1px solid #d8e0f0;
  padding: 0.55rem 0.75rem;
  word-break: break-word;
}

.extraction-json-modal-body .extraction-data-table tbody tr:nth-child(even) td {
  background: #fafbff;
}

.extraction-json-modal-body .extraction-data-table tbody tr:nth-child(even) th {
  background: #e8eef8;
}

.extraction-cell-empty {
  color: var(--muted);
}

.extraction-nested-table-wrap {
  margin: 0;
}

.extraction-nested-table-wrap .extraction-data-table {
  border-radius: 8px;
}

.extraction-nested-table-wrap .extraction-data-table th[scope="row"] {
  width: 42%;
  font-size: 0.86rem;
}

.extraction-value-list {
  margin: 0;
  padding-left: 1.15rem;
}

.extraction-value-list-item {
  margin-bottom: 0.5rem;
}

.extraction-value-list-item:last-child {
  margin-bottom: 0;
}

.path-cell {
  max-width: 220px;
  font-size: 0.78rem;
  color: var(--muted);
  word-break: break-all;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-span-2 {
    grid-column: auto;
  }
}

.upload-action-btn {
  cursor: pointer;
}

.button-primary,
.button-secondary {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.62rem 1rem;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.18s ease;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(60, 143, 123, 0.22);
}

.button-primary:hover {
  filter: brightness(0.97);
}

.button-secondary {
  background: #ffffff;
  color: #2f3742;
  border-color: #cfd5cc;
}

.button-secondary:hover {
  background: #f7f8f6;
}

.button-primary:disabled,
.button-secondary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.button-primary.is-loading,
.button-secondary.is-loading {
  cursor: wait;
}

.button-danger {
  background: #d9534f;
  color: #ffffff;
  border-color: #c9302c;
}

.button-danger:hover {
  background: #c9302c;
}

.button-danger:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.file-preview {
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid #d3d9d1;
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 0.26rem 0.38rem 0.26rem 0.7rem;
  color: #505b67;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
}

.chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(62vw, 620px);
}

.chip-remove {
  border: 0;
  background: #e0e7de;
  color: #223127;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.chip-remove:hover {
  background: #f3cdcf;
}

.category-grid {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.55rem;
}

.category-grid li {
  background: #f7f8f6;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.progress-wrap {
  width: 100%;
  background: #e8ece5;
  border: 1px solid #d2d8cf;
  border-radius: 999px;
  overflow: hidden;
  height: 14px;
}

.progress-bar {
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, var(--accent), #72bda9);
  transition: width 0.25s ease;
}

.center {
  text-align: center;
}

.table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}

.metrics-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 0.8rem 0.9rem;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  margin: 0.3rem 0;
  font-size: 1.45rem;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid #e6e9e3;
  text-align: left;
  padding: 0.72rem 0.38rem;
  vertical-align: top;
  max-width: 300px;
}

th {
  color: #69727f;
  font-weight: 600;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tbody tr:hover {
  background: #f8faf8;
}

.muted {
  color: var(--muted);
}

.error {
  color: var(--danger);
  font-weight: 700;
}

.file-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--link);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  max-width: 300px;
  word-wrap: break-word;
}

.file-link:disabled {
  opacity: 0.7;
  cursor: wait;
  text-decoration: none;
}

.validation-cell {
  display: grid;
  gap: 0.5rem;
  min-width: 200px;
}

.validation-actions {
  display: flex;
  gap: 0.4rem;
}

.validation-actions .button-secondary {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
}

.validation-form {
  display: grid;
  gap: 0.35rem;
}

.validation-form.hidden {
  display: none;
}

.validation-category,
.validation-subcategory,
.validation-is-correct,
.validation-note {
  width: 100%;
  border: 1px solid #ccd5ca;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  font-size: 0.85rem;
  background: #fff;
}

.validation-form-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.validation-form .button-primary {
  width: max-content;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

.badge {
  width: max-content;
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid #d0d7cc;
  background: #f4f6f3;
  color: #5b6572;
  padding: 0.2rem 0.55rem;
}

.badge-success {
  background: #e9f7f1;
  color: #21664f;
  border-color: #b7dfd0;
}

.badge-warning {
  background: #fdf4e8;
  color: #8a5624;
  border-color: #f0d1aa;
  max-width: 200px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 23, 33, 0.42);
  padding: 0;
  border: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal[open] {
  display: grid;
  place-items: center;
}

.modal::backdrop {
  background: rgba(16, 23, 33, 0.42);
}

.modal-card {
  width: min(1120px, 95vw);
  height: min(86vh, 920px);
  background: #ffffff;
  border: 1px solid #d4dbd2;
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(10, 20, 34, 0.16);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e1e5de;
  background: #f7f9f6;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-body {
  padding: 0.9rem;
  overflow: auto;
  background: #f5f7f4;
}

.viewer-frame {
  width: 100%;
  height: 100%;
  min-height: 66vh;
  border: 1px solid #d7ded4;
  border-radius: 10px;
  background: #fff;
}

.sheet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f5f7f4;
  padding-bottom: 0.45rem;
}

.sheet-tab {
  border: 1px solid #c4cfdf;
  background: #eef3fc;
  color: #2a3f60;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

.sheet-tab.active {
  background: linear-gradient(180deg, #89e0ff, #9ff3cf);
  color: #08233f;
  border-color: #81d8eb;
}

.sheet-viewer-pane {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ccd7e8;
  padding: 0.7rem;
}

.sheet-meta {
  color: #476184;
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
}

.sheet-scroll-wrap {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 62vh;
  border: 1px solid #d2dced;
  border-radius: 8px;
  background: #ffffff;
  scrollbar-gutter: stable both-edges;
}

.sheet-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: #152849;
  background: #ffffff;
}

.sheet-table th,
.sheet-table td {
  border: 1px solid #d8e0f0;
  padding: 0.44rem 0.52rem;
  text-align: left;
  vertical-align: top;
}

.sheet-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f2f5fb;
  color: #2d3f5c;
  font-weight: 700;
}

.sheet-table tbody tr:nth-child(even) td {
  background: #f8fbff;
}

.sheet-table tbody tr:hover td {
  background: #e9f7ff;
}

.cell-formula {
  min-width: 220px;
}

.cell-main {
  font-weight: 600;
}

.cell-sub {
  color: #5f6f89;
  font-size: 0.74rem;
  line-height: 1.25;
  margin-top: 0.15rem;
}

.cell-warning {
  color: #9a5b1d;
}

.sheet-scroll-wrap::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

.sheet-scroll-wrap::-webkit-scrollbar-track {
  background: #edf2fb;
  border-radius: 10px;
}

.sheet-scroll-wrap::-webkit-scrollbar-thumb {
  background: #b4c2db;
  border-radius: 10px;
  border: 2px solid #edf2fb;
}

.modal-card.is-fullscreen {
  width: 98vw;
  height: 96vh;
}

@media (max-width: 920px) {
  .brand-header {
    grid-template-columns: 1fr;
    margin: 0.8rem 0.75rem 0;
  }

  .brand-left {
    justify-content: flex-start;
    padding: 0.75rem 1rem;
  }

  .brand-logo {
    width: 140px;
  }

  .page {
    padding: 0.75rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .upload-actions-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.classification-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
}

.classification-results-header .div-left {
  margin-right: 30px;
}

.results-status-column {
  min-width: 150px;
}

.upload-error-banner {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.locked-row {
  background: #fffbeb;
}

.locked-row:hover {
  background: #fef3c7 !important;
}

.file-name-locked {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.badge-locked {
  background: #fef3cd;
  color: #92400e;
  border-color: #fbbf24;
}

.locked-hint {
  font-size: 0.82rem;
  color: #92400e;
  font-style: italic;
  line-height: 1.4;
}

.unlocked-processing-row {
  background: #f0fdf4;
}

.unlocked-processing-row:hover {
  background: #dcfce7 !important;
}

.btn-unlock {
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.password-modal-card {
  width: min(460px, 92vw);
  height: auto;
  min-height: unset;
}

.password-modal-body {
  padding: 1.4rem 1.2rem;
  background: #ffffff;
}

.password-modal-prompt {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  color: var(--text);
}

.password-input-group {
  margin: 0.8rem 0;
}

.password-input-group input {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.password-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 159, 140, 0.15);
}

.password-modal-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.password-error {
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.35rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pending-password-banner {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #fffbeb;
  border: 1px solid #fbbf24;
  border-radius: 10px;
}

.pending-password-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #92400e;
}

.pending-password-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.pending-password-msg {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: #78350f;
  line-height: 1.45;
}

.pending-password-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.84rem;
  color: #92400e;
  font-weight: 600;
  line-height: 1.55;
}

.tracker-tooltip {
  position: absolute;
  z-index: 9999;
  background: #1f2937;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: none;
}

.tooltip-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  padding: 2px 0;
}

.tooltip-row span {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 5px;
}

.tooltip-key {
  opacity: 0.9;
}

.tooltip-type {
  opacity: 0.6;
}

.tooltip-empty {
  font-size: 0.8rem;
  opacity: 0.7;
}

#liveResultsTable .fileNameColumn {
  min-width: 500px;
}

.sNoColumn {
  min-width: 50px;
}
