/* =====================================================================
   SHIM-ME Hub — Proof + Test Data section (Bucket B)
   Scoped to body #shim-proof per §0 rule 3.
   Color/font props use !important to beat Total's late inline styles.

   Play button fix: Total overrides display on <button> elements.
   display/align/justify on .shim-proof__vid-play use !important so
   the flex centering survives Total's cascade.
   ===================================================================== */

/* ---- Section chrome ---- */
body #shim-proof {
  border-bottom: 1px solid var(--shim-line);
}

/* ---- Section head ---- */
body #shim-proof .shim-proof__head {
  margin-bottom: 56px;
}

/* ================================================================
   VIDEO GRID
   ================================================================ */

body #shim-proof .shim-proof__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

/* ---- Video card ---- */
body #shim-proof .shim-proof__vid {
  background: var(--shim-bg-2);
  border: 1px solid var(--shim-line);
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ---- Thumbnail ---- */
body #shim-proof .shim-proof__vid-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #2a2a2a, #161616);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--shim-line);
}

/* Dark overlay — sits above the background image so title/label remain legible.
   z-index: 0 keeps it below label (z:1), title (z:1) and play button (z:2). */
body #shim-proof .shim-proof__vid-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Thumbnail variant backgrounds */
body #shim-proof .shim-proof__vid-thumb--app {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
}
body #shim-proof .shim-proof__vid-thumb--thermal {
  background:
    radial-gradient(ellipse at top, rgba(227,29,30,0.3), transparent 60%),
    linear-gradient(180deg, #1c1c1c, #050505);
}
body #shim-proof .shim-proof__vid-thumb--long {
  background: linear-gradient(180deg, #2a2c30, #0c0c10);
}

/* Featured card overrides */
body #shim-proof .shim-proof__vid--feature .shim-proof__vid-thumb {
  aspect-ratio: 16 / 9;
}

/* ---- Thumbnail label (top-left mono text) ---- */
body #shim-proof .shim-proof__vid-lbl {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1; /* above ::before overlay */
  font-family: var(--shim-mono) !important;
  font-size: 10px !important;
  color: var(--shim-text-mute) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

/* ---- Thumbnail title (bottom-left display text) ---- */
body #shim-proof .shim-proof__vid-title {
  font-family: var(--shim-display) !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  text-transform: uppercase !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  line-height: 1;
  position: relative; /* keep above play button */
  z-index: 1;
}
body #shim-proof .shim-proof__vid--feature .shim-proof__vid-title {
  font-size: 48px !important;
}

/* ---- Play button ----
   §0 note: Total overrides display on <button> with display:inline-block
   or similar. All flex properties carry !important to guarantee centering.
   The SVG play triangle is optically off-center by ~2px; translateX(2px)
   corrects it — this is intentional, not a bug.
   -------------------------------------------------------------------- */
body #shim-proof .shim-proof__vid-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2; /* above ::before overlay (z:0) and vid-title (z:1) — fixes click on cards 2-4 */
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: var(--shim-red) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  /* Flex centering — !important prevents Total overriding display */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 6px rgba(227, 29, 30, 0.18);
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease;
}
body #shim-proof .shim-proof__vid-play:hover {
  background: var(--shim-red-deep) !important;
  box-shadow: 0 0 0 8px rgba(227, 29, 30, 0.25);
}
body #shim-proof .shim-proof__vid--feature .shim-proof__vid-play {
  width: 64px !important;
  height: 64px !important;
}

/* Play SVG — optical centering for the triangle path */
body #shim-proof .shim-proof__vid-play svg {
  display: block !important;
  flex-shrink: 0;
  transform: translateX(2px);
  pointer-events: none;
}

/* Inactive placeholder (no video URL set yet) */
body #shim-proof .shim-proof__vid-play--inactive {
  opacity: 0.35;
  cursor: default;
}

/* ---- Featured card meta (below thumbnail) ---- */
body #shim-proof .shim-proof__vid--feature .shim-proof__vid-meta {
  padding: 24px;
}
body #shim-proof .shim-proof__vid-meta h3 {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  text-transform: uppercase !important;
  letter-spacing: -0.005em !important;
  color: var(--shim-text) !important;
  margin: 6px 0 12px;
  line-height: 1.1;
}
body #shim-proof .shim-proof__vid-meta p {
  font-family: var(--shim-body) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--shim-text-dim) !important;
  margin: 0;
}

/* ---- Small card title + body (h4 / p directly on card) ---- */
body #shim-proof .shim-proof__vid h4 {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  color: var(--shim-text) !important;
  margin: 18px 18px 6px;
  line-height: 1.2;
}
body #shim-proof .shim-proof__vid > p {
  font-family: var(--shim-body) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--shim-text-dim) !important;
  margin: 0 18px 18px;
}

/* ================================================================
   DATA STRIP (TEST DATA)
   ================================================================ */

body #shim-proof .shim-proof__data-strip {
  border-top: 1px solid var(--shim-line);
  padding-top: 56px;
}

body #shim-proof .shim-proof__data-head {
  margin-bottom: 36px;
}

body #shim-proof .shim-proof__data-h3 {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  color: var(--shim-text) !important;
  margin: 0;
  line-height: 1.05;
}

/* ---- Data card grid ---- */
body #shim-proof .shim-proof__data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--shim-line);
  border-left: 1px solid var(--shim-line);
}

body #shim-proof .shim-proof__dcard {
  padding: 32px 28px;
  border-right: 1px solid var(--shim-line);
  border-bottom: 1px solid var(--shim-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none !important;
  color: inherit !important;
  transition: background .15s ease;
}
body #shim-proof .shim-proof__dcard:hover {
  background: var(--shim-bg-2) !important;
}

/* Tag */
body #shim-proof .shim-proof__dcard-tag {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  color: var(--shim-red) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

/* Big stat number */
body #shim-proof .shim-proof__dcard-big {
  font-family: var(--shim-display) !important;
  font-weight: 900 !important;
  font-size: 88px !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
}

/* Unit suffix (e.g. °F) */
body #shim-proof .shim-proof__dcard-big span {
  font-family: var(--shim-mono) !important;
  font-size: 22px !important;
  color: var(--shim-text-mute) !important;
  margin-left: 6px;
}

/* Body copy */
body #shim-proof .shim-proof__dcard p {
  font-family: var(--shim-body) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--shim-text-dim) !important;
  margin: 0;
}

/* "View data →" link at bottom */
body #shim-proof .shim-proof__dcard-link {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  color: var(--shim-text) !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--shim-line);
  transition: color .15s ease;
}
body #shim-proof .shim-proof__dcard:hover .shim-proof__dcard-link {
  color: var(--shim-red) !important;
}

/* ================================================================
   VIDEO MODAL
   ================================================================ */

.shim-proof-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shim-proof-modal[hidden] {
  display: none;
}

.shim-proof-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.shim-proof-modal__box {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
  background: #000;
  border: 1px solid var(--shim-line);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.shim-proof-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--shim-line);
  color: var(--shim-text);
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: border-color .15s ease, color .15s ease;
}
.shim-proof-modal__close:hover {
  border-color: var(--shim-red);
  color: var(--shim-red);
}
.shim-proof-modal__close svg {
  display: block !important;
  flex-shrink: 0;
  pointer-events: none;
}

.shim-proof-modal__player {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.shim-proof-modal__player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1024px) {
  body #shim-proof .shim-proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  body #shim-proof .shim-proof__vid--feature {
    grid-column: span 2;
  }
  body #shim-proof .shim-proof__vid--feature .shim-proof__vid-thumb {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  body #shim-proof .shim-proof__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body #shim-proof .shim-proof__vid--feature {
    grid-column: span 1;
  }
  body #shim-proof .shim-proof__vid--feature .shim-proof__vid-title {
    font-size: 32px !important;
  }
  body #shim-proof .shim-proof__data-cards {
    grid-template-columns: 1fr;
  }
  body #shim-proof .shim-proof__dcard-big {
    font-size: 64px !important;
  }
}

/* ================================================================
   DATA CARD — button variant reset
   When modal_type is set, the <a> becomes a <button>. These resets
   strip browser button chrome while keeping all existing dcard styles.
   ================================================================ */

body #shim-proof button.shim-proof__dcard--modal {
  background: none !important;
  border: 1px solid var(--shim-line) !important;
  font-family: inherit !important;
  font-size: inherit !important;
  text-align: left !important;
  width: 100% !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
body #shim-proof button.shim-proof__dcard--modal:hover {
  background: var(--shim-bg-2) !important;
}

/* ================================================================
   DATA MODALS — shared base
   Same fixed-overlay pattern as the video modal.
   ================================================================ */

.shim-data-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.shim-data-modal[hidden] {
  display: none;
}

.shim-data-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.shim-data-modal__box {
  position: relative;
  z-index: 1;
  width: min(800px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #0d0d0d;
  border: 1px solid var(--shim-line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85);
  padding: 40px 40px 48px;
  box-sizing: border-box;
}
.shim-data-modal__box--wide {
  width: min(1120px, 96vw);
}
.shim-data-modal__box--vhb {
  width: min(720px, 96vw);
}

/* Close button — matches video modal style */
.shim-data-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent !important;
  border: 1px solid var(--shim-line) !important;
  color: var(--shim-text) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: border-color .15s ease, color .15s ease;
}
.shim-data-modal__close:hover {
  border-color: var(--shim-red) !important;
  color: var(--shim-red) !important;
}
.shim-data-modal__close svg {
  display: block !important;
  flex-shrink: 0;
  pointer-events: none;
}

/* Section eyebrow (red variant) */
.shim-eyebrow--red {
  color: var(--shim-red) !important;
}

/* Shared modal head block */
.shim-data-modal__thermal-head,
.shim-data-modal__strength-head,
.shim-data-modal__vhb-head {
  margin-bottom: 28px;
  padding-right: 40px; /* clear close button */
}
.shim-data-modal__thermal-head h3,
.shim-data-modal__strength-head h3,
.shim-data-modal__vhb-head h3 {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  text-transform: uppercase !important;
  letter-spacing: -0.005em !important;
  color: var(--shim-text) !important;
  margin: 6px 0 10px !important;
  line-height: 1.1 !important;
}
.shim-data-modal__thermal-head p,
.shim-data-modal__strength-head p,
.shim-data-modal__vhb-head p {
  font-family: var(--shim-body) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--shim-text-dim) !important;
  margin: 0 !important;
}

/* Placeholder shown when no image has been uploaded yet */
.shim-data-modal__img-placeholder {
  background: var(--shim-bg-2);
  border: 1px dashed var(--shim-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.shim-data-modal__img-placeholder span {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  color: var(--shim-text-mute) !important;
  letter-spacing: 0.1em !important;
}

/* ================================================================
   THERMAL MODAL — interactive photo with probe dots
   ================================================================ */

.shim-data-modal__thermal-photo {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}
.shim-data-modal__thermal-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Probe dot */
.shim-data-modal__dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--shim-red) !important;
  border: 0 !important;
  border-radius: 50% !important;
  padding: 0 !important;
  margin: -10px 0 0 -10px !important; /* center on the coordinate */
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3;
  transition: transform .15s ease;
}
.shim-data-modal__dot:hover,
.shim-data-modal__dot:focus-visible {
  transform: scale(1.25);
  outline: none !important;
}

/* Pulsing ring around dot */
.shim-data-modal__dot-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--shim-red);
  opacity: 0.5;
  animation: shim-dot-pulse 2s ease-out infinite;
}

@keyframes shim-dot-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.8); opacity: 0;   }
  100% { transform: scale(1);   opacity: 0;   }
}

/* Tooltip that follows the active dot */
.shim-data-modal__dot-tooltip {
  position: absolute;
  z-index: 10;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid var(--shim-red);
  padding: 14px 18px 16px;
  pointer-events: none;
  min-width: 190px;
  transform: translate(-50%, calc(-100% - 16px));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}
.shim-data-modal__dot-tooltip[hidden] {
  display: none;
}
.shim-data-modal__dot-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(10, 10, 10, 0.97);
  border-right: 1px solid var(--shim-red);
  border-bottom: 1px solid var(--shim-red);
}
.shim-data-modal__dot-tooltip-label {
  display: block;
  font-family: var(--shim-mono) !important;
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  color: var(--shim-text-mute) !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding-bottom: 6px !important;
}
.shim-data-modal__dot-tooltip-value {
  display: block;
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  letter-spacing: 0.03em !important;
  line-height: 1.2 !important;
  margin-bottom: 6px !important;
}
.shim-data-modal__dot-tooltip-temp {
  display: block;
  font-family: var(--shim-mono) !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  color: var(--shim-red) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

/* Debug coordinate labels — only rendered when thermal_debug="1" */
.shim-data-modal__dot-debug {
  position: absolute;
  z-index: 20;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid #ffdd00;
  color: #ffdd00 !important;
  font-family: monospace !important;
  font-size: 10px !important;
  line-height: 1.3;
  padding: 3px 6px;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 26px));
  letter-spacing: 0.08em;
}

/* ================================================================
   STRENGTH MODAL — tabs + 2-column panel layout
   ================================================================ */

/* Tab bar */
.shim-data-modal__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--shim-line);
  margin-bottom: 32px;
}

.shim-data-modal__tab {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--shim-text-mute) !important;
  background: none !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -1px !important;
  padding: 12px 20px !important;
  cursor: pointer !important;
  transition: color .15s ease, border-color .15s ease;
}
.shim-data-modal__tab:hover {
  color: var(--shim-text) !important;
}
.shim-data-modal__tab--active {
  color: var(--shim-text) !important;
  border-bottom-color: var(--shim-red) !important;
}

/* Panel visibility */
.shim-data-modal__panel {
  display: none;
}
.shim-data-modal__panel--active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Left column: data */
.shim-data-modal__panel-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Meta table */
.shim-data-modal__meta-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--shim-line);
}
.shim-data-modal__meta-table th,
.shim-data-modal__meta-table td {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  padding: 7px 10px !important;
  border-bottom: 1px solid var(--shim-line) !important;
  vertical-align: top !important;
  line-height: 1.4 !important;
}
.shim-data-modal__meta-table th {
  color: var(--shim-text-mute) !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  width: 100px !important;
}
.shim-data-modal__meta-table td {
  color: var(--shim-text) !important;
}
.shim-data-modal__meta-table tr:last-child th,
.shim-data-modal__meta-table tr:last-child td {
  border-bottom: 0 !important;
}

/* Stats table */
.shim-data-modal__stats-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--shim-line);
}
.shim-data-modal__stats-table th,
.shim-data-modal__stats-table td {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  padding: 7px 10px !important;
  border-bottom: 1px solid var(--shim-line) !important;
  text-align: right !important;
  line-height: 1.3 !important;
}
.shim-data-modal__stats-table th {
  color: var(--shim-text-mute) !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
}
.shim-data-modal__stats-table td:first-child {
  text-align: left !important;
  color: var(--shim-text-mute) !important;
}
.shim-data-modal__stats-table td {
  color: var(--shim-text) !important;
}
/* Highlight specimen rows */
.shim-data-modal__stats-table tr:first-child td,
.shim-data-modal__stats-table tr:nth-child(2) td {
  color: #fff !important;
}
.shim-data-modal__stats-table tr:last-child th,
.shim-data-modal__stats-table tr:last-child td {
  border-bottom: 0 !important;
}

/* SVG chart */
.shim-strength-chart-wrap {
  margin: 0;
  line-height: 0;
}
.shim-strength-chart {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Right column: test photo */
.shim-data-modal__panel-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--shim-line);
}
.shim-data-modal__panel-photo .shim-data-modal__img-placeholder {
  height: 200px;
}

/* ================================================================
   VHB MODAL — PDF preview or fallback image
   ================================================================ */

/* PDF iframe — tall enough to show ~2 pages at a time; user scrolls inside */
.shim-data-modal__vhb-pdf {
  width: 100%;
  height: 72vh;
  border: 1px solid var(--shim-line);
  display: block;
  background: #fff;
}

/* Fallback image */
.shim-data-modal__vhb-content img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--shim-line);
}
.shim-data-modal__vhb-content .shim-data-modal__img-placeholder {
  height: 300px;
}

/* ================================================================
   DATA MODAL — Responsive
   ================================================================ */

@media (max-width: 900px) {
  .shim-data-modal__panel--active {
    grid-template-columns: 1fr;
  }
  .shim-data-modal__panel-photo {
    order: -1; /* photo above data on narrow screens */
  }
}

@media (max-width: 600px) {
  .shim-data-modal__box {
    padding: 24px 20px 32px;
  }
  .shim-data-modal__tabs {
    flex-wrap: wrap;
  }
  .shim-data-modal__tab {
    padding: 10px 14px !important;
    font-size: 10px !important;
  }
  .shim-data-modal__thermal-head h3,
  .shim-data-modal__strength-head h3,
  .shim-data-modal__vhb-head h3 {
    font-size: 20px !important;
  }
}
