:root {
  --bg: #f6f2eb;
  --bg-soft: #efe9df;
  --panel: rgba(255, 252, 247, 0.9);
  --panel-strong: #fffdf9;
  --line: #d9cbb8;
  --line-soft: #e8ddd0;
  --text: #2a2520;
  --muted: #74685a;
  --accent: #6e4b27;
  --accent-2: #b69362;
  --accent-soft: #efe4d2;
  --good: #2f7a57;
  --warn: #9b6b1a;
  --bad: #a94e49;
  --shadow: 0 20px 60px rgba(55, 38, 18, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(182,147,98,0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(110,75,39,0.06), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

body { min-height: 100vh; }
.hidden { display: none !important; }

.auth-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.auth-card {
  width: min(560px, 100%);
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.auth-brand-copy h1 {
  margin: 0 0 4px;
  font-size: 31px;
  line-height: 1.05;
}

.auth-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.auth-sub {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-form, .drawer-form {
  display: grid;
  gap: 14px;
}

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

input, select, textarea {
  width: 100%;
  background: #fffdf9;
  color: var(--text);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 13px 15px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #c6ad88;
  box-shadow: 0 0 0 3px rgba(182,147,98,0.14);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  cursor: pointer;
  border: 0;
}

.btn, .auth-form button {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.14s ease, opacity 0.14s ease, background 0.14s ease;
}

button:hover {
  transform: translateY(-1px);
}

.btn-primary, .auth-form button {
  background: linear-gradient(135deg, #5b3d1f, #8b673f 55%, #b69362);
  color: #fff;
}

.btn-secondary {
  color: var(--accent);
  background: transparent;
  border: 1px solid #c8b394;
}

.mini-status {
  font-size: 13px;
  color: var(--muted);
}

.v4a-logo {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: linear-gradient(145deg, #5f421f, #a8895f);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  overflow: hidden;
  flex: 0 0 auto;
}

.v4a-logo .logo-core {
  position: absolute;
  inset: 9px;
  border-radius: 14px;
  border: 2px solid rgba(255,248,240,0.90);
  border-right-color: rgba(255,248,240,0.18);
  border-bottom-color: rgba(255,248,240,0.18);
}

.v4a-logo .logo-dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,248,240,0.95);
}

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

.sidebar {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: rgba(250,245,238,0.88);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  text-align: left;
  padding: 13px 14px;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
}

.nav-link:hover,
.nav-link.active {
  background: #fffdf9;
  color: var(--text);
  border: 1px solid var(--line-soft);
}

.nav-link.danger {
  color: var(--bad);
}

.sidebar-footer {
  margin-top: 26px;
}

.small-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.main {
  padding: 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.topbar h1 {
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.topbar p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.5;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.metrics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.metric-card, .card {
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.metric-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.content-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.8fr) minmax(340px, 1fr);
}

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

.panel-head h2, .drawer-head h3 {
  margin: 0;
}

.panel-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

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

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fffdf9;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

thead th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(111, 84, 53, 0.03);
  padding: 15px;
  border-bottom: 1px solid var(--line-soft);
}

tbody td {
  padding: 15px;
  border-bottom: 1px solid rgba(116,104,90,0.10);
  vertical-align: top;
}

tbody tr:hover {
  background: rgba(182,147,98,0.05);
}

.empty-cell {
  text-align: center;
  padding: 28px !important;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  background: #f1ebe3;
  color: var(--text);
}

.status-pill.approved {
  background: rgba(47,122,87,0.14);
  color: #2f7a57;
}

.status-pill.observe {
  background: rgba(110,75,39,0.10);
  color: #765332;
}

.status-pill.expired {
  background: rgba(155,107,26,0.14);
  color: #94641a;
}

.status-pill.enforce {
  background: rgba(182,147,98,0.20);
  color: #6e4b27;
}

.status-pill.rejected {
  background: rgba(169,78,73,0.14);
  color: #984440;
}

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

.actions button {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f4ece1;
  color: var(--text);
  border: 1px solid var(--line-soft);
}

.actions button.primary {
  background: linear-gradient(135deg, #5b3d1f, #8b673f 55%, #b69362);
  color: #fff;
  border: 0;
}

.actions button.danger {
  background: rgba(169,78,73,0.10);
  color: #984440;
  border: 1px solid rgba(169,78,73,0.18);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 620px;
  overflow: auto;
}

.activity-item {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 14px;
  background: #fffdf9;
}

.activity-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.activity-type {
  font-weight: 800;
}

.activity-ts, .activity-actor {
  color: var(--muted);
  font-size: 13px;
}

.activity-actor {
  margin-bottom: 8px;
}

.activity-details {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.55;
}

.activity-empty {
  color: var(--muted);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42,37,32,0.18);
  backdrop-filter: blur(4px);
  z-index: 40;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100vh;
  padding: 22px;
  background: #faf6ef;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 50;
  overflow: auto;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f1e9dd;
  color: var(--text);
  border: 1px solid var(--line-soft);
}

.hint-box {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.toast-root {
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.toast {
  min-width: 260px;
  max-width: 380px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,252,247,0.98);
  box-shadow: var(--shadow);
  color: var(--text);
}

.toast.success { border-color: rgba(47,122,87,0.25); }
.toast.error { border-color: rgba(169,78,73,0.25); }
.toast.info { border-color: rgba(110,75,39,0.20); }

code {
  color: #6e4b27;
}

@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topbar {
    flex-direction: column;
  }

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

  .toolbar, .topbar-actions {
    flex-direction: column;
  }

  .main {
    padding: 18px;
  }

  .drawer {
    width: 100%;
  }
}

.file-label {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.45);
}

.file-label-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

#import-file {
  padding: 10px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#import-file:focus {
  box-shadow: none;
}

.file-label {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.45);
}

.file-label-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

#import-file {
  padding: 10px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#import-file:focus {
  box-shadow: none;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.signal-card {
  min-height: 170px;
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.queue-item {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fffdf9;
}

.queue-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.queue-sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.queue-empty {
  color: var(--muted);
}

.content-grid {
  align-items: start;
}

.leads-card {
  min-height: 760px;
}

.side-card {
  min-height: 760px;
  position: sticky;
  top: 24px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fffdf9;
  max-height: 760px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1080px;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

tbody td {
  padding: 18px 15px;
  border-bottom: 1px solid rgba(116,104,90,0.10);
  vertical-align: top;
}

.company-cell {
  min-width: 190px;
}

.company-name {
  font-weight: 800;
  margin-bottom: 6px;
}

.company-meta {
  color: var(--muted);
  font-size: 12px;
}

.email-cell,
.website-cell,
.action-cell,
.movement-cell {
  line-height: 1.55;
}

.email-cell,
.website-cell {
  min-width: 220px;
}

.action-cell {
  min-width: 150px;
  font-weight: 700;
  color: var(--accent);
}

.movement-cell {
  min-width: 170px;
  color: var(--muted);
  font-size: 13px;
}

.activity-tip {
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 640px;
  overflow: auto;
  padding-right: 4px;
}

.activity-item {
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 16px;
  background: #fffdf9;
}

.activity-type {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.activity-details {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.7;
  background: rgba(110,75,39,0.04);
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
    min-height: auto;
  }
}

.drawer-backdrop {
  background: rgba(42,37,32,0.10);
  backdrop-filter: blur(1px);
}

.import-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-chip {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fffdf9;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.summary-chip span {
  color: var(--muted);
  font-size: 13px;
}

.summary-chip strong {
  font-size: 18px;
  color: var(--text);
}

.actions button {
  min-width: 86px;
  font-weight: 700;
}

.actions button[disabled] {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.activity-item.is-important {
  border-color: #c8b394;
  background: linear-gradient(180deg, #fffdf9, #f7efe4);
}

.activity-item.is-important .activity-type {
  color: var(--accent);
}

.activity-json-label {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.queue-item.is-urgent {
  border-color: #c8b394;
  background: linear-gradient(180deg, #fffdf9, #f8f0e5);
}

@media (max-width: 860px) {
  .import-summary {
    grid-template-columns: 1fr;
  }
}

.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.signal-card {
  min-height: auto;
  padding: 16px;
}

.queue-list {
  gap: 8px;
}

.queue-item {
  padding: 10px 12px;
  border-radius: 14px;
}

.queue-title {
  font-size: 14px;
  margin-bottom: 2px;
}

.queue-sub {
  font-size: 12px;
  line-height: 1.4;
}

.leads-card {
  min-height: 680px;
}

.side-card {
  min-height: 680px;
}

.table-wrap {
  max-height: 680px;
}

table {
  min-width: 0;
  width: 100%;
}

.company-cell {
  min-width: auto;
}

.lead-main-cell {
  min-width: 0;
  width: 42%;
}

.lead-main-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.lead-main-sub {
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 4px;
  word-break: break-word;
}

.lead-main-meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.email-cell,
.website-cell,
.action-cell,
.movement-cell {
  min-width: 0;
}

.action-cell {
  width: 18%;
}

.movement-cell {
  width: 18%;
}

.actions {
  gap: 6px;
}

.actions button {
  min-width: 72px;
  padding: 8px 10px;
  font-size: 13px;
}

.activity-list {
  max-height: 560px;
}

@media (max-width: 1200px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

.signal-grid-compact {
  margin-bottom: 14px;
}

.signal-grid-compact .signal-card {
  padding: 14px 16px;
  min-height: 0;
}

.compact-head {
  margin-bottom: 10px;
}

.compact-list {
  gap: 8px;
  max-height: 170px;
  overflow: auto;
}

.queue-item {
  padding: 9px 11px;
  border-radius: 12px;
}

.queue-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}

.queue-sub {
  font-size: 12px;
  line-height: 1.35;
}

.metrics-grid {
  margin-bottom: 14px;
}

.content-grid {
  gap: 14px;
}

.leads-card {
  min-height: 720px;
}

.side-card {
  min-height: 720px;
}

.table-wrap {
  max-height: 720px;
}

.activity-list {
  max-height: 620px;
}

.panel-head h2 {
  font-size: 20px;
}

.topbar {
  margin-bottom: 16px;
}

.topbar p {
  max-width: 920px;
}

@media (max-width: 1200px) {
  .compact-list {
    max-height: none;
  }
}

.activity-readable {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.activity-line {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  padding: 8px 10px;
  background: rgba(110,75,39,0.05);
  border-radius: 10px;
}

.sidebar .nav {
  gap: 6px;
}

.sidebar .nav a {
  padding-top: 11px;
  padding-bottom: 11px;
}

.topbar-actions .btn {
  min-width: 132px;
}

/* ===== LEADS TABLE FIX ===== */

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fffdf9;
  max-height: 720px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f7f1e7;
  color: #7b6750;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(116,104,90,0.14);
  box-shadow: 0 1px 0 rgba(116,104,90,0.08);
}

tbody td {
  padding: 18px 14px;
  border-bottom: 1px solid rgba(116,104,90,0.10);
  vertical-align: top;
  background: #fffdf9;
}

tbody tr:first-child td {
  padding-top: 24px;
}

.lead-main-cell {
  width: 40%;
}

.lead-main-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
}

.lead-main-sub {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 8px;
  word-break: break-word;
}

.lead-main-meta {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  word-break: break-word;
}

.action-cell {
  width: 16%;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--accent);
}

.movement-cell {
  width: 20%;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  word-break: break-word;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.actions button {
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 999px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .lead-main-title {
    font-size: 16px;
  }

  .lead-main-sub,
  .action-cell,
  .movement-cell {
    font-size: 14px;
  }

  .actions button {
    font-size: 13px;
    padding: 9px 10px;
  }
}

@media (max-width: 980px) {
  table {
    min-width: 980px;
    table-layout: auto;
  }
}

/* ===== FINAL LEADS TABLE REPAIR ===== */

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(116,104,90,0.16);
  border-radius: 22px;
  background: #fffdf9;
  max-height: 720px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f6efe4;
  color: #7b6750;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(116,104,90,0.16);
  box-shadow: 0 1px 0 rgba(116,104,90,0.08);
}

tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(116,104,90,0.10);
  vertical-align: top;
  background: #fffdf9;
}

tbody tr:first-child td {
  padding-top: 26px;
}

.lead-main-cell {
  width: 42%;
}

.lead-main-title {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
}

.lead-main-sub {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  word-break: break-word;
}

.lead-main-meta {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  word-break: break-word;
}

.action-cell {
  width: 16%;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--accent);
  word-break: break-word;
}

.movement-cell {
  width: 18%;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  word-break: break-word;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.actions button {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 999px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  table {
    min-width: 980px;
    table-layout: auto;
  }
}
