/* Styles migrated from TRU.html. */
:root {
    --background: #0D1B2A;
    --surface: #112240;
    --highlight: #1A2B4C;
    --truth: #28A745;
    --reliability: #3B6CED;
    --understanding: #D4AF37;
    --text: #FFFFFF;
    --text-muted: #7C8A9B;
    --heading: #FFFFF0;
    --shadow: rgba(0, 0, 0, 0.3);
    --bar-red: #FF4C4C;
    --bar-green: #28A745;
  }

  body {
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', serif;
  margin: 0;
  padding: 0;
}
    .num-font {
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}
    span.num-font {
  font-family: 'Inter', sans-serif !important;
  font-variant-numeric: tabular-nums;
  font-size: 1.035rem !important;
  font-weight: bold;
  color: var(--text);
}
  /* 🧭 NAVBAR & MENU */
  nav.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--highlight);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    box-shadow: 0 2px 6px var(--shadow);
  }

  .nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--understanding);
  }

  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    background: none;
    border: none;
  }

  .nav-links {
    display: flex;
    gap: 28px;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--understanding);
  }
    .nav-logo img {
  height: 40px;
  width: 40px;
}
    .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  font-size: 1.25rem;
}
    /* 🎨 TRU Bars */
  .divider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
  }

  .divider-bar {
    display: flex;
    gap: 12px;
    width: 340px;
  }

  .divider-bar div {
    width: 108px;
    height: 6px;
    border-radius: 3px;
    box-shadow: 0 0 4px var(--shadow);
  }

  .truth { background-color: var(--truth); }
  .reliability { background-color: var(--reliability); }
  .understanding { background-color: var(--understanding); }

  .divider-labels {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 340px;
    margin-top: 8px;
  }

  .divider-labels span {
    width: 108px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  /* 👇 DROPDOWNS STACK ON MOBILE */
@media (max-width: 600px) {
  .dropdowns-wrapper {
    flex-direction: column !important;
    align-items: center;
    gap: 20px !important;
  }

  .dropdown-group {
    width: 100%;
    max-width: 320px;
    text-align: center !important;
  }

  .dropdown-group select {
    width: 100%;
    padding: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    background-color: var(--surface);
    color: var(--text);
    border: 1px solid var(--highlight);
    border-radius: 6px;
  }

  .dropdown-group label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
  }
}

/* 👇 NAV MENU STACK ON MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--highlight);
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    padding: 12px 0;
    gap: 12px;
    box-shadow: 0 3px 8px var(--shadow);
  }

  .nav-links.show {
    display: flex;
    animation: fadeSlideDown 0.3s ease;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  @keyframes fadeSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

  /* ✅ YOUR ORIGINAL STYLES BELOW */
  .container {
    max-width: 960px;
    margin: 100px auto 0 auto;
    padding: 24px;
  }

  h1 {
    font-family: 'Playfair Display', serif;
    color: var(--heading);
    margin-bottom: 16px;
    text-align: center;
  }

  select {
    padding: 8px;
    margin-bottom: 16px;
    background-color: var(--surface);
    color: var(--text);
    border: 1px solid var(--highlight);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--surface);
    margin-top: 12px;
  }
    #score-table th,
#score-table td,
#score-body span,
#score-body strong {
  font-family: 'Playfair Display', serif;
}

  th, td {
    padding: 12px;
    border-bottom: 1px solid var(--highlight);
    text-align: left;
  }

  .text-truth { color: var(--truth); }
  .text-reliability { color: var(--reliability); }
  .text-understanding { color: var(--understanding); }

  .total-score {
    font-weight: bold;
  }

  .positive-score { color: var(--bar-green); }
  .negative-score { color: var(--bar-red); }

  .score-bar {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bar-indicator {
    width: 10px;
    height: 24px;
    border-radius: 2px;
  }

  .bar-red {
    background-color: var(--bar-red);
  }

  .bar-green {
    background-color: var(--bar-green);
  }
    .role-breakdown {
  background-color: var(--surface);
  border-radius: 10px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 48px auto;
  box-shadow: 0 2px 6px var(--shadow);
}

.role-breakdown h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--heading);
  margin-top: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.role-breakdown p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin: 2px 0;
}

.role-breakdown small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}
    .role-box {
  background-color: var(--background);
  border: 2px solid var(--understanding);
  padding: 24px;
  margin: 0 auto;
  border-radius: 12px;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.tru-name-submit-card {
  background-color: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 12px;
  padding: 22px;
  max-width: 720px;
  margin: 34px auto 10px auto;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.18);
}

.tru-name-submit-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--understanding);
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 1.45rem;
}

.tru-name-submit-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 18px auto;
  max-width: 620px;
}
.tru-subscriber-validation-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tru-subscriber-validation-input {
  width: 100%;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}

.tru-subscriber-validation-input:focus {
  border-color: var(--understanding);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}


.tru-subscriber-validation-status {
  min-height: 22px;
  text-align: center;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tru-substack-subscribe-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--understanding);
  background-color: var(--highlight);
  color: var(--understanding);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.tru-substack-subscribe-link:hover {
  background-color: var(--surface);
}

.tru-profile-fields-locked {
  display: none;
}

.tru-name-submit-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tru-name-submit-input {
  width: 100%;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}

.tru-name-submit-input:focus {
  border-color: var(--understanding);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.tru-name-submit-button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--understanding);
  background-color: var(--highlight);
  color: var(--understanding);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.tru-name-submit-button:hover {
  background-color: var(--surface);
}

.tru-name-submit-status {
  min-height: 22px;
  text-align: center;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tru-copy-id-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tru-copy-id-code {
  color: var(--understanding);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  word-break: break-word;
}

.tru-copy-id-button {
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background-color: var(--highlight);
  color: var(--understanding);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.tru-copy-id-button:hover {
  background-color: var(--surface);
}

.tru-status-check-card {
  background-color: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 12px;
  padding: 22px;
  max-width: 720px;
  margin: 18px auto 34px auto;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.18);
}

.tru-status-check-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--understanding);
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 1.45rem;
}

.tru-status-check-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 18px auto;
  max-width: 620px;
}

.tru-status-check-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tru-status-check-input {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}

.tru-status-check-input:focus {
  border-color: var(--understanding);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.tru-status-check-button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--understanding);
  background-color: var(--highlight);
  color: var(--understanding);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.tru-status-check-button:hover {
  background-color: var(--surface);
}

.tru-status-check-result {
  min-height: 22px;
  text-align: center;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tru-status-check-result strong {
  color: var(--understanding);
}

.tru-profile-search-card {
  background-color: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 12px;
  padding: 22px;
  max-width: 720px;
  margin: 0 auto 26px auto;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.18);
}

.tru-profile-search-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--understanding);
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 1.45rem;
}

.tru-profile-search-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 18px auto;
  max-width: 620px;
}

.tru-profile-search-input {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
  text-align: center;
}

.tru-profile-search-input:focus {
  border-color: var(--understanding);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.tru-profile-search-results {
  max-width: 520px;
  margin: 14px auto 0 auto;
  font-family: 'Inter', sans-serif;
}

.tru-profile-search-result-item {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background-color: rgba(13, 27, 42, 0.72);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.tru-profile-search-result-item:hover {
  border-color: var(--understanding);
  background-color: var(--highlight);
}

.tru-profile-search-result-name {
  display: block;
  color: var(--understanding);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.tru-profile-search-result-role {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  margin-top: 3px;
}

.tru-profile-search-empty {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 12px;
}

  /* Modal-style popup for Scoring Logic */
  #role-box-wrapper {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: transparent;
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
    width: 90%;
    overflow-y: auto;
    max-height: 90vh;
  }

  #modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }

  #modal-close-btn {
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    text-align: right;
    margin-bottom: 10px;
  }

.role-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7DBEFF;
  margin-bottom: 8px;
}

.role-box p {
  margin: 4px 0;
  font-size: 1.05rem;
  color: var(--text);
}

.role-box small {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
   /* Fix so span color wins over the strong override */
.text-truth strong {
  color: var(--truth) !important;
}
.text-reliability strong {
  color: var(--reliability) !important;
}
.text-understanding strong {
  color: var(--understanding) !important;
}
    /* 📊 Score table layout */
table.tru-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

table.tru-table th:nth-child(1),
table.tru-table td:nth-child(1) {
  width: 35%;
  min-width: 100px;
  text-align: center;
  vertical-align: middle;
}

table.tru-table th:nth-child(2),
table.tru-table td:nth-child(2) {
  width: 65%;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}

/* 📱🖥️ Score card layout for mobile and desktop */
#output-container {
  width: min(100% - 48px, 960px);
  box-sizing: border-box;
  padding: 20px;
  margin: 24px auto 0 auto;
}

#score-table,
#score-table tbody,
#score-table tr,
#score-table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#score-table thead {
  display: none;
}

#score-table tr {
  background-color: rgba(13, 27, 42, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  margin: 0 0 18px 0;
  overflow: hidden;
}

#score-table td {
  border-bottom: none;
  padding: 14px 16px;
}

#score-table td::before {
  content: none !important;
  display: none !important;
}

#score-table td[data-label="Score"] {
  background-color: rgba(17, 34, 64, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  text-align: center;
}

#score-table td[data-label="Score"] > div {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap;
}

#score-table td[data-label="Score"] span:first-child,
#score-table td[data-label="Score"] strong {
  font-size: 1.08rem !important;
}

#score-table td[data-label="Score"] .num-font {
  font-size: 1.18rem !important;
}

#score-table td[data-label="Explanation"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  color: #DDE3EA !important;
  text-align: left !important;
}
    #score-table th:nth-child(1),
#score-table th:nth-child(2) {
  color: #D4AF37;
}
    #score-table th,
#score-table td {
  font-family: 'Playfair Display', serif;
}
  .tru-language-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 18px auto;
  }

  .tru-language-toggle-button {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background-color: rgba(13, 27, 42, 0.75);
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .tru-language-toggle-button:hover {
    background-color: var(--highlight);
    color: var(--understanding);
  }

  .tru-language-toggle-button.active {
    border-color: var(--understanding);
    background-color: var(--highlight);
    color: var(--understanding);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  }

  .total-score-comment-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
    margin-left: 12px;
  }
    /* Target both filter labels */
.dropdowns-wrapper label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
}
    @media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--highlight);
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    padding: 12px 0;
    gap: 12px;
    box-shadow: 0 3px 8px var(--shadow);
  }

  .nav-links.show {
    display: flex;
    animation: fadeSlideDown 0.3s ease;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  @keyframes fadeSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Target the dropdown selects */
/* Enhanced dropdown styling with subtle down arrow */
.dropdowns-wrapper select {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: var(--surface);
  border: 1px solid #D4AF37;
  color: #D4AF37;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.2);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23D4AF37' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 36px; /* make room for icon */
  width: 260px;
}

.dropdowns-wrapper select:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  background-color: #252525;
}

.dropdowns-wrapper select option {
  background-color: #1e1e1e;
  color: #D4AF37;
  font-family: 'Roboto Slab', serif;
}
    .dropdowns-wrapper label,
.dropdowns-wrapper select {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
}
    /* Strategic Owl Output Container Branding */
#output-container {
      width: min(100% - 48px, 960px);
      box-sizing: border-box;
      background-color: var(--surface);
      border: 1px solid #D4AF37;
      border-radius: 12px;
      padding: 24px;
      margin: 30px auto 0 auto;
      box-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
      color: var(--text);
      font-family: 'Roboto Slab', serif;
      font-size: 16px;
    }

@media (min-width: 769px) {
  #score-table tr {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: stretch;
  }

  #score-table td[data-label="Score"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    border-right: 1px solid rgba(212, 175, 55, 0.22);
  }

  #score-table td[data-label="Explanation"] {
    display: flex;
    align-items: center;
    min-height: 96px;
    padding: 18px 22px;
  }

  #total-score-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  #output-container {
    width: calc(100% - 24px);
    padding: 16px;
  }
}

/* Owl Access frontend shell. Supabase connection is added in the final phase. */
.tru-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tru-owl-modal[hidden] { display: none; }

.tru-owl-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.tru-owl-modal-card {
  width: min(620px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--understanding);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.tru-owl-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.tru-owl-modal-header h2 { margin: 0; }

.tru-owl-close-button {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.tru-owl-form,
.tru-owl-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.tru-owl-links { grid-template-columns: 1fr 1fr; }

.tru-owl-field,
.tru-owl-primary-button,
.tru-owl-secondary-button {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--understanding);
  border-radius: 10px;
  font: inherit;
}

.tru-owl-field {
  background: #fff;
  color: #111827;
}

.tru-owl-primary-button,
.tru-owl-secondary-button {
  background: #0B1C3D;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.tru-owl-note,
.tru-owl-message {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.tru-owl-note {
  padding: 10px 12px;
  border-left: 4px solid var(--understanding);
  background: rgba(212, 175, 55, 0.1);
}

.tru-owl-message {
  min-height: 20px;
  margin: 0;
  color: var(--understanding);
}

body.tru-owl-modal-open { overflow: hidden; }

@media (max-width: 768px) {
  .tru-nav-actions { margin-left: auto; }
  .tru-owl-links { grid-template-columns: 1fr; }
}
