:root {
  --bg: #eef5ff;
  --panel: #ffffff;
  --blue: #1f6fe5;
  --blue-dark: #114ea5;
  --green: #4caf50;
  --green-dark: #2e7d32;
  --yellow: #ffd54f;
  --text: #22304a;
  --muted: #5b6b88;
  --border: #cfe0ff;
  --shadow: 0 12px 28px rgba(31, 70, 140, 0.14);
  --radius: 20px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;  
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf3ff 100%);
  color: var(--text);
  overflow: hidden;
}

.app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px;
  min-height: 100vh;
  overflow: hidden;
}

.layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 14px;
  align-items: start;
  height: calc(100vh - 16px);
}

.panel {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar {
  padding: 18px;
  position: sticky;
  top: 0px;
}

.top-controls {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr);
  gap: 14px;
  align-items: center;
  margin: 10px 0 8px;
}

.button-controls {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
  justify-content: center;
}

.audio-controls {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr);
  gap: 10px;
  align-items: center;
}

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

.control-volume input {
  width: 130px;
}

.control-music {
  width: 100%;
  padding: 8px 12px;
}

.title-container {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
  overflow: hidden;
}

.title-image {
  max-width: 67%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

button {
  border: none;
  border-radius: 16px;
  padding: 9px 16px;
  /* font-size: 17px; */
  font-weight: bold;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

button:hover { transform: translateY(-1px); }
button:active { transform: translateY(1px); }
/* button:disabled { opacity: .6; cursor: default; } */
button:disabled {
  opacity: 0.4;
  filter: grayscale(0.3);
}

.btn-primary {
  background: linear-gradient(180deg, #3e8cff 0%, #1f6fe5 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(31, 111, 229, 0.22);
}

.btn-soft {
  background: #f3f8ff;
  color: var(--blue-dark);
  border: 2px solid #dbe9ff;
}

.btn-success {
  background: linear-gradient(180deg, #68d16d 0%, #39a444 100%);
  color: white;
  box-shadow: 0 10px 18px rgba(57, 164, 68, 0.2);
}

.status-line {
  margin: 8px 0;
  /* font-size: 18px; */
  line-height: 1.4;
}

.status-label {
  font-weight: bold;
  color: var(--blue-dark);
}

.hidden {
  display: none;
}

#topArea > div {
  transition: opacity .2s ease;
}

.main {
  padding: 10px;
  height: 97%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.floating-controls {
  position: fixed;
  top: 135px;
  right: 0px;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: row;
  align-items: center;

  transition: transform .3s ease;
}

.floating-controls.closed {
  transform: translate(calc(100% - 28px), -50%);
}

.floating-toggle {
  width: 28px;
  height: 72px;
  padding: 0;
  border-radius: 12px 0 0 12px;
  background: #f3f8ff;
  color: var(--blue-dark);
  border: 1px solid #dbe9ff;
  z-index: 2;
}

#floatingContent {
  width: 243px;
  padding: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #dbe9ff;
  border-radius: 16px 0 0 16px;
  backdrop-filter: blur(10px);
}

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

.floating-audio select {
  width: 160px;
  padding: 4px;
  font-size: 12px;
}

.floating-audio input {
  width: 90px;
}

.floating-btn {
  width: 34px;
  height: 34px;
  padding: 0;

  border-radius: 999px;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3f8ff;
  color: var(--blue-dark);
  font-weight: bold;
  font-size: 16px;
}

.floating-btn.active {
  color: var(--blue-dark);
}

select {
  width: 100%;
  padding: 9px 16px;
  border-radius: 16px;
  border: 2px solid #dbe9ff;
  background: #f3f8ff;
  color: var(--blue-dark);
  /* font-size: 17px; */
  font-weight: bold;
}

label {
  display: block;
  font-weight: bold;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.topbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

#topbarContent.section-hidden {
  display: none;
}

#topbarContent {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  /* margin-bottom: 14px; */
}

#topbarContent h2 {
  margin: 0;
  /* font-size: 30px; */
  color: var(--blue-dark);
}

.toggle-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-hidden {
  display: none !important;
}

.top-badges {
  display: grid;
  grid-template-columns: 0.6fr 0.8fr 1fr;
  gap: 8px;
  width: 100%;
  padding: 0px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(207, 224, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 10px 24px rgba(31, 70, 140, 0.12);
  backdrop-filter: blur(10px);
}

#topPrayerSummary {
  grid-column: 1 / -1; /* 👈 ocupa toda a linha */
}

#topStepSummary {
  font-size: 12px;
}

.badge-toggle {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.9);
}

.help-button {
  width: 34px;
  height: 34px;

  border-radius: 999px;
  border: 2px solid #dbe9ff;

  background: #f3f8ff;
  color: var(--blue-dark);

  font-weight: bold;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#buttonsBadge {
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 2px 6px;
}

.command-panel {
  display: grid;
  grid-template-columns: repeat(4, auto) minmax(180px, 1fr) 160px;
  gap: 8px;
  align-items: center;
  margin-top: 10px;

  overflow: hidden;

  max-height: 200px;   /* altura suficiente aberto */
  opacity: 1;

  transition:
    max-height .35s ease,
    opacity .25s ease,
    transform .25s ease;

  transform: translateY(0);
}

.command-panel.hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.toggle-controls {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3f8ff;
  color: var(--blue-dark);

  font-size: 16px;
  line-height: 1; /* 👈 importante */
  padding: 0;

  text-align: center;
  transform: translateY(10px);
  box-shadow: 0 0 10px rgba(31,111,229,0.4);
}

.toggle-controls.active {
  color: white;
}

.toggle-controls:hover {
  transform: scale(1.05);
}

.badge {
  position: relative;
  min-height: 58px;
  padding: 10px 12px 10px 16px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(238,245,255,0.72));
  border: 1px solid rgba(255,255,255,0.9);

  color: var(--blue-dark);
  /* font-size: 14px; */
  /* font-weight: 800; */
  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(31,111,229,0.08),
    0 8px 18px rgba(31,70,140,0.10);
  overflow: hidden;
}

.badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  border-radius: 999px;
  background: #1f6fe5;
  box-shadow: 0 0 12px rgba(31,111,229,0.55);
}

#topStepSummary::before {
  background: #ffb300;
  box-shadow: 0 0 14px rgba(255,179,0,0.7);
}

#topPrayerSummary::before {
  background: #39a444;
  box-shadow: 0 0 14px rgba(57,164,68,0.65);
}

#topDecadeSummary::before {
  background: #7e57c2;
  box-shadow: 0 0 14px rgba(126,87,194,0.65);
}

#topMysterySummary::before {
  background: #ff7043;
  box-shadow: 0 0 14px rgba(255,112,67,0.65);
}

.board-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.board {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f7fbff;
  box-shadow: inset 0 0 0 2px #edf5ff;
}

.board-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.mystery-card {
  margin-top: 14px;
  border: 2px solid #e2edff;
  border-radius: 18px;
  padding: 12px;
  background: #fbfdff;
}

.mystery-title {
  margin: 0 0 10px;
  color: var(--blue-dark);
  /* font-size: 18px; */
  font-weight: bold;
}

.mystery-frame {
  border: 2px solid #dbe9ff;
  border-radius: 16px;
  background: #ffffff;
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.mystery-image {
  max-width: 96%;
  max-height: 260px;
  display: none;
  border-radius: 12px;
}

.mystery-placeholder {
  text-align: center;
  color: var(--muted);
  /* font-size: 15px; */
  line-height: 1.5;
}

.hotspot-layer,
.highlight-layer,
.trail-layer {
  position: absolute;
  inset: 0;
}

.hotspot {
  position: absolute;
  width: 3.6%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.02);
}

.hotspot:hover {
  outline: 2px solid rgba(255, 213, 79, 0.55);
  outline-offset: 2px;
}

.hotspot.locked {
  cursor: default;
}

.trail-dot {
  position: absolute;
  width: 1.7%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(76, 175, 80, 0.92);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

.highlight {
  position: absolute;
  width: 3%; /* levemente maior */
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle,
    rgba(255,255,200,.75) 0%,
    rgba(255,235,59,.45) 35%,
    rgba(255,235,59,0) 70%
  );

  border: 3px solid #ffd600;

  box-shadow:
    0 0 0 10px rgba(255, 235, 59, 0.25),
    0 0 28px 12px rgba(255, 235, 59, 0.45),
    0 0 45px 18px rgba(255, 235, 59, 0.25);

  pointer-events: none;
  transition: left .22s ease, top .22s ease, opacity .18s ease;
  animation: pulse 1.2s infinite ease-in-out;

  z-index: 3;
}

.prayer-card {
    margin-top: 12px;
    border: 2px solid #e2edff;
    border-radius: 18px;
    padding: 11px;
    background: #fbfdff;
}

.prayer-title {
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-weight: bold;
}

.prayer-text {
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  color: var(--text);

  max-height: 180px;   /* 👈 limite */
  overflow-y: auto;    /* 👈 scroll */
  padding-right: 6px;  /* 👈 espaço pro scroll */
}

.prayer-text::-webkit-scrollbar {
  width: 6px;
}

.prayer-text::-webkit-scrollbar-thumb {
  background: #cfe0ff;
  border-radius: 10px;
}

.prayer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mystery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mystery-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-zoom {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background .15s ease;
}

.btn-zoom:hover {
  background: #eef5ff;
}

.prayer-modal.hidden {
  display: none;
}

.prayer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 40, 80, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.prayer-modal-content {
  width: min(92vw, 620px);
  max-height: 82vh;
  overflow-y: auto;
  background: #ffffff;
  border: 2px solid #cfe0ff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(31, 70, 140, 0.25);
  position: relative;
}

.prayer-modal-content h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
}

.prayer-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
  font-size: 18px;
}

.prayer-modal-text {
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
  white-space: pre-line;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.image-modal.hidden {
  display: none;
}

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  display: block;
}

.image-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

#currentMysteryImage {
  cursor: zoom-in;
}

.help-modal-text {
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
  white-space: pre-line;
}

.help-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 14px;
}

.help-tab {
  flex: 0 0 auto;
  background: #eef5ff;
  border: 1px solid var(--border);
  border-bottom: none;
  color: var(--muted);
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  white-space: nowrap;
}

.help-tab.active {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.help-tab:hover {
  color: var(--blue);
  background: rgba(31, 111, 229, 0.06);
}

.help-modal-text {
  white-space: pre-line;
}

#configPanel {
  transition: opacity .3s ease, height .3s ease;
  margin-top: 15px;
}

#configPanel.hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@keyframes pulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12); }
}

.footer {
    margin-top: 4px;
    padding: 7px 10px;
    text-align: center;
    background: #f4f8ff;
    border-top: 2px solid #dbe9ff;
    width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 34px;
  display: block;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #dbe9ff;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 18px;
}

.social-link:hover { transform: translateY(-1px); }
.social-link i {
  font-size: 18px;
}

/* Cores opcionais (fica lindo) */
.social-link .fa-youtube {
  color: #FF0000;
}

.social-link .fa-instagram {
  color: #E1306C;
}

#languageSelect {
  width: 15%;
  margin-left: auto;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 8px;
}

.message-box {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: bold;
  display: none;
}

.message-box.info {
  display: block;
  background: #f3f8ff;
  border: 2px solid #dbe9ff;
  color: var(--blue-dark);
}

.message-box.success {
  display: block;
  background: #eefcf0;
  border: 2px solid #ccefd1;
  color: var(--green-dark);
}

.message-box.warn {
  display: block;
  background: #fff8e7;
  border: 2px solid #ffe0a8;
  color: #946400;
}

.toggle-section {
  display: none;
}

.sidebar-toggle-mobile {
  display: none;
}

.mobile-floating-panels {
  display: none;
}

@media (max-width: 720px) {
  .controls { grid-template-columns: 1fr 1fr; }
  #topbarContent h2 { font-size: 24px; }
  .status-line { font-size: 16px; }
  .app {
    overflow: auto;
  }

  .main {
      height: auto;
  }

  .top-badges {
    grid-template-columns: 1fr 1.8fr 1fr 1fr;
    gap: 8px;
    padding: 6px;
    position: relative;
  }

  .toggle-controls {
    position: absolute;

    left: 45%;
    bottom: -22px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f8ff;

    font-size: 16px;
  }

  .toggle-controls.active {
    color: white;

    /* 👇 NÃO mexer em padding/size */
  }

  .toggle-controls:hover {
    transform: translateY(5px);
  }

  .floating-controls {
    top: 168px;
    right: 4px;
  }

  .badge {
    min-height: 30px !important;
    font-size: 12.5px;
    border-radius: 14px;
    padding: 2px 8px 2px 12px;
  }

  .badge::before {
    width: 4px;
    top: 8px;
    bottom: 8px;
  }

  .prayer-text {
    max-height: 140px;
    font-size: 10px;
  }

  .button-controls {
    grid-template-columns: 1fr 1fr;
  }

  .control-volume,
  .control-music {
    grid-column: span 2;
  }

  .toggle-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
  }

  .section-hidden {
    display: none;
  }

  .sidebar-container {
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }

  #topbarContainer {
    position: static;
    margin-top: 7px;
    top: 80px;
    left: 12px;
    right: 12px;
    z-index: 9998;

    border-radius: 30px;

    box-shadow: 0 18px 40px rgba(31,70,140,0.25);

    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); /* ease-out suave */

  }

  #topbarContainer.hidden {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
    pointer-events: none;
  }

  .modeLabel {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .mobile-floating-panels {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mobile-floating-card {
    position: absolute;
    width: 42%;
    max-width: 160px;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 8px;
    pointer-events: auto;
  }

  .mobile-floating-card.left {
    left: 0px;
    bottom: 1px;
  }

  .mobile-floating-card.right {
    right: 0px;
    bottom: 1px;
  }

}

@media (min-width: 1081px) {
  .main {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #topbarContent {
    flex: 0 0 auto;
  }

  .board-shell {
    flex: 1 1 auto;
    min-height: 0;
  }

  .footer {
    flex: 0 0 auto;
  }

  .board {
    height: 100%;
    max-width: 900px;
    min-height: 420px;
  }
 
  .app {
    height: 100vh;
  }

  .layout {
    height: calc(100vh - 24px);
  }


}

@media (max-width: 1080px) {
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .main {
    position: relative;
    z-index: 0;
    margin-top: 0;
    padding: 8px;
    overflow: visible;  
    display: block;
    height: auto;
    min-height: auto; 
  }

  .panel,
  .sidebar,
  .main {
    width: 100%;
    max-width: 100%;
  }

  .top-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge {
    min-height: 46px;
    font-size: 12px;
  }

  .board-shell {
    flex: none;
    display: block;
    width: 100%;
    padding: 4px;
  }

  .board {
    height: auto;
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  select,
  button,
  input {
    max-width: 100%;
  }

  .message-box,
  .prayer-text,
  .mystery-placeholder {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .top-controls {
    grid-template-columns: 1fr;
  }

  .button-controls {
    grid-template-columns: repeat(2, 1fr);
  }

  .audio-controls {
    grid-template-columns: 1fr;
  }

  .control-volume input {
    width: 100%;
  }

  .command-panel {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 8px;
  }

  .button-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .button-controls button {
    width: 100%;
  }

  #bgMusicSelect,
  .control-volume {
    width: 100%;
    grid-column: span 2;
  }
  
  .sidebar {
    /* position: static; */
    position: relative;
    /* z-index: 30; */
  }

  .sidebar-toggle-mobile {
    display: block;
    height: 42px;
  }

  .sidebar-container {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    top: 90px;
    z-index: 9998;

    max-height: calc(100vh - 110px);
    overflow-y: auto;

    background: white;
    border: 2px solid #dbe9ff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(31,70,140,0.25);
  }

  .sidebar-container.sidebar-open-mobile {
    display: block;
  }
}

@media (max-width: 600px) {
  .help-tabs {
    gap: 5px;
    border-bottom: none;
  }

  .help-tab {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  .help-tab.active {
    border-color: var(--blue);
    box-shadow: inset 0 -3px 0 var(--blue);
  }
}
