/* Base variables and theme tokens */
:root {
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --container-max: 1200px;
  --shadow-strong: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 2px 10px rgba(0, 0, 0, 0.15);
  --underline-height: 2px;
  --navbar-offset: 64px;
  --font-monospace:
    'SFMono-Regular', Consolas, 'Monaco', 'Menlo', 'Courier New', monospace;
  /* Brand CTA gradient stops - the source of truth for every brand gradient
     in the framework (buttons, navbar CTA, hero accents). Derived from
     --primary-blue via color-mix() so every project's own accent color
     flows through automatically, instead of a hardcoded coral. */
  /* Darkened rather than washed toward white: white CTA label text needs 4.5:1
     (WCAG AA) and the raw brand only reaches 3.11:1. The lightest stop here is
     80% brand -> 4.64:1. --primary-blue itself is untouched, so borders, tints
     and links keep the exact brand hue. */
  --cta-gradient-start: color-mix(in srgb, var(--primary-blue) 80%, black);
  --cta-gradient-mid: color-mix(in srgb, var(--primary-blue) 77%, black);
  --cta-gradient-end: color-mix(in srgb, var(--primary-blue) 74%, black);
  /* Welcoming Navbar Gradient */
  --navbar-gradient: linear-gradient(
    135deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-mid) 55%,
    var(--cta-gradient-end) 100%
  );
  /* Accent Underline */
  --navbar-underline: linear-gradient(
    90deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-end) 100%
  );
  --btn-gradient: var(--primary-blue);
  --btn-gradient-hover: color-mix(in srgb, var(--primary-blue) 80%, black);
}

/* DARK THEME */
body.theme-dark {
  --bg-gradient:
    radial-gradient(
      circle at 8% 10%,
      color-mix(in srgb, var(--primary-blue) 18%, transparent) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 12%,
      color-mix(in srgb, var(--accent-blue) 16%, transparent) 0%,
      transparent 46%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, #141413 90%, black) 0%,
      #141413 44%,
      color-mix(in srgb, #141413 84%, black) 100%
    );
  --text-color: #f3f0ea;
  --muted-text: #b4ada2;
  --heading-color: #f3f0ea;
  --heading-sub: #f3f0ea;
  --container-bg: #1e1d1b;
  --border-color: #4e483f;
  --table-header-bg: #1e1d1b;
  --card-bg: #252422;
  --info-item-bg: rgba(45, 127, 249, 0.12);
  --input-bg: #181716;
  /* Brand-derived, like the light block below. These were the coral literals
     #fb596e / #ff7d8c, so on a dark page EVERY link and every link hover came out
     coral no matter what the project set --primary-blue to - the one place a
     rebrand visibly leaked. Hover goes to --brand-2 rather than
     --primary-blue-hover: the hover pair is darker, which reads as a hover on
     white and as "greyed out" on a dark background, so dark mode brightens
     instead. */
  --link: var(--primary-blue);
  --link-hover: var(--brand-2);
  --blockquote: var(--primary-blue);
  --dropdown-bg: #2d2c29;
  --shadow-elev: 0 10px 40px rgba(0, 0, 0, 0.4);
  --primary-blue: #fb596e;
  --primary-blue-hover: #ec4258;
  --accent-blue: #b6c0ff;
  --accent-blue-light: #d7dcff;
  --light-blue-text: #c7cdff;
  --bg-dark: #181716;
  --footer-bottom-bg: #1e1d1b;
  --footer-border: #4e483f;
  --footer-section-bg: #1e1d1b;
  --text-primary: #f3f0ea;
  --text-secondary: #b4ada2;
  --card-header-bg: #252422;
  --item-bg: #252422;
  --item-hover-bg: #2d2c29;
  --primary-color: #14ccb0;
  --primary-hover: #26e0c3;
  --primary-shadow: rgba(20, 204, 176, 0.4);
  --info-text: #8ec5ff;
  --info-bg: #1a3a4a;
  --info-border: #2a5264;
  --shadow-color: rgba(20, 204, 176, 0.3);
  --button-disabled-bg: rgba(148, 163, 184, 0.2);
  --button-disabled-border: rgba(148, 163, 184, 0.32);
  --button-disabled-text: rgba(226, 232, 240, 0.72);
  --button-disabled-shadow: none;
  --btn-gradient: var(--primary-blue);
  --btn-gradient-hover: color-mix(in srgb, var(--primary-blue) 70%, white);
  /* Re-declared here (not just in :root): --primary-blue only exists on
     body.theme-dark/light, and custom properties don't inherit upward from
     body to its html/:root ancestor, so a :root-only declaration of these
     would compute as invalid on <html> and body would inherit that invalid
     value instead of resolving --primary-blue itself. */
  /* Darkened rather than washed toward white: white CTA label text needs 4.5:1
     (WCAG AA) and the raw brand only reaches 3.11:1. The lightest stop here is
     80% brand -> 4.64:1. --primary-blue itself is untouched, so borders, tints
     and links keep the exact brand hue. */
  --cta-gradient-start: color-mix(in srgb, var(--primary-blue) 80%, black);
  --cta-gradient-mid: color-mix(in srgb, var(--primary-blue) 77%, black);
  --cta-gradient-end: color-mix(in srgb, var(--primary-blue) 74%, black);
  --navbar-gradient: linear-gradient(
    135deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-mid) 55%,
    var(--cta-gradient-end) 100%
  );
  --navbar-underline: linear-gradient(
    90deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-end) 100%
  );

  /* Navbar brand palette — see the light-theme block for the full rationale. */
  --primary-ink: #ffffff;
  --danger: #ff6b7d;
  /* Ink on a --danger fill (the notification badge), and the semantic success
     colour. Literals live here with the rest of the palette; component CSS
     references the token. */
  --danger-ink: #ffffff;
  --success: #3fbf85;
  --success-ink: #06231a;
  --warning: #e8a33d;
  --warning-ink: #2b1d05;
  --accent-purple: #c07df0;
  --brand: var(--primary-blue);
  --brand-2: color-mix(in oklch, var(--primary-blue) 72%, white);
  --brand-soft: color-mix(in oklch, var(--primary-blue) 18%, transparent);
  --brand-softer: color-mix(in oklch, var(--primary-blue) 10%, transparent);
  --brand-ink: var(--primary-ink);
  /* Brand-tinted surfaces, not neutral chrome. These were plain aliases of
     --container-bg / --dropdown-bg, which are hue-neutral greys: every other
     --nb-* colour followed --primary-blue, so a project rebranded its whole bar
     except the one thing people look at - the dropdown card stayed the same
     warm near-black on every project. The mix keeps the light/dark identity of
     the surface and only borrows the hue. --nb-surface takes the smaller share
     because it also paints the scrolled bar glass, the brand badge and the
     drawer; --nb-panel is the floating card and can carry more. Percentages
     follow the graduated tint in base_data_table.css. */
  --nb-surface: color-mix(
    in oklch,
    var(--primary-blue) 8%,
    var(--container-bg)
  );
  --nb-panel: color-mix(in oklch, var(--primary-blue) 12%, var(--dropdown-bg));
  --nb-shadow: color-mix(in oklch, var(--primary-blue) 26%, transparent);
  --nb-scrim: color-mix(in oklch, var(--primary-blue) 20%, rgb(0 0 0 / 0.62));
  --nb-knob: color-mix(in oklch, var(--primary-blue) 32%, var(--container-bg));

  /* Component surfaces that sit ON the page rather than in a panel - the search
     field and code blocks. They used the neutral --input-bg / --card-bg, which are
     warm near-blacks from the original palette, so on a project whose page is (say)
     purple-black they read as a different, muddy material. Mixing the brand in keeps
     them in the page's own hue family on every project. */
  /* The field is a WASH, not a surface: translucent, so it sits on whatever colour
     is behind it (page, navbar, panel) instead of asserting one of its own. Its ink
     carries the brand hue - a plain --text-color wash is hue-neutral and reads as
     grey next to the brand-tinted code blocks. */
  --field-ink: color-mix(in oklch, var(--text-color) 68%, var(--primary-blue));
  --field-bg: color-mix(in oklch, var(--field-ink) 9%, transparent);
  --field-border: color-mix(in oklch, var(--field-ink) 16%, transparent);
  --code-bg: color-mix(in oklch, var(--primary-blue) 7%, var(--input-bg));
  --code-border: color-mix(in oklch, var(--text-color) 12%, transparent);
  /* Code ink stays a deliberate syntax colour rather than the brand - a project can
     override it, but tinting code text with the accent hurts readability. */
  --code-fg: #81c784;
}

/* LIGHT THEME — Clean white + gray */
body.theme-light {
  --bg-gradient: linear-gradient(
    135deg,
    #fffcf9 0%,
    #fdfaf7 30%,
    #fbf8f4 60%,
    #fcf9f6 100%
  );
  --text-color: #1e1b1a;
  --muted-text: #6b6561;
  --heading-color: #1a1714;
  --heading-sub: #1a1714;
  --container-bg: #ffffff;
  --border-color: #e5e0d8;
  --table-header-bg: #f1efeb;
  --card-bg: rgba(241, 239, 235, 0.6);
  --info-item-bg: rgba(45, 127, 249, 0.06);
  --input-bg: #ffffff;
  --link: var(--primary-blue);
  --link-hover: var(--primary-blue-hover);
  --blockquote: var(--primary-blue);
  --dropdown-bg: #ffffff;
  --shadow-elev: 0 4px 20px rgba(0, 0, 0, 0.08);
  --primary-blue: #fb596e;
  --primary-blue-hover: #d93a52;
  --light-blue-text: #ffb8c0;
  --accent-blue: #0fb39a;
  --bg-dark: #e5e0d8;
  --footer-nav-bg: #f1efeb;
  --footer-bottom-bg: #efece6;
  --footer-border: #e5e0d8;
  --footer-section-bg: #f1efeb;
  --text-primary: #1e1b1a;
  --text-secondary: #6b6561;
  --card-header-bg: #f1efeb;
  --item-bg: #f1efeb;
  --item-hover-bg: #fffefb;
  --primary-color: #fb596e;
  --primary-hover: #d93a52;
  --primary-shadow: rgba(251, 89, 110, 0.25);
  --info-text: #0a3e8f;
  --info-bg: #dae8ff;
  --info-border: #bcd6ff;
  --shadow-color: rgba(0, 0, 0, 0.06);
  --button-disabled-bg: rgba(251, 89, 110, 0.07);
  --button-disabled-border: rgba(251, 89, 110, 0.15);
  --button-disabled-text: rgba(30, 27, 26, 0.4);
  --button-disabled-shadow: none;
  --btn-gradient: var(--primary-blue);
  --btn-gradient-hover: color-mix(in srgb, var(--primary-blue) 70%, black);
  /* Re-declared here (not just in :root): --primary-blue only exists on
     body.theme-dark/light, and custom properties don't inherit upward from
     body to its html/:root ancestor, so a :root-only declaration of these
     would compute as invalid on <html> and body would inherit that invalid
     value instead of resolving --primary-blue itself. */
  /* Darkened rather than washed toward white: white CTA label text needs 4.5:1
     (WCAG AA) and the raw brand only reaches 3.11:1. The lightest stop here is
     80% brand -> 4.64:1. --primary-blue itself is untouched, so borders, tints
     and links keep the exact brand hue. */
  --cta-gradient-start: color-mix(in srgb, var(--primary-blue) 80%, black);
  --cta-gradient-mid: color-mix(in srgb, var(--primary-blue) 77%, black);
  --cta-gradient-end: color-mix(in srgb, var(--primary-blue) 74%, black);
  --navbar-gradient: linear-gradient(
    135deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-mid) 55%,
    var(--cta-gradient-end) 100%
  );
  --navbar-underline: linear-gradient(
    90deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-end) 100%
  );

  /* ---------------------------------------------------------------------
     Navbar brand palette.

     Everything the navbar draws derives from --primary-blue, so a project
     rebrands by overriding just that pair in its own styles.css (in BOTH
     theme blocks) and the whole bar follows:

       body.theme-light { --primary-blue: #e07b00; --primary-blue-hover: #b86400; }
       body.theme-dark  { --primary-blue: #e07b00; --primary-blue-hover: #b86400; }

     Two deliberate choices worth knowing before changing anything here:

     - --brand aliases --primary-blue, NOT --primary-color. The latter is teal
       (#0282aa) in dark mode by design for buttons; aliasing it would turn every
       project's navbar teal on dark.
     - --brand-2 mixes toward white rather than aliasing --primary-blue-hover.
       The hover colour is *darker* than the brand, so using it would render the
       logo badge's gradient dark-on-darker and lose the sheen entirely.

     --primary-ink is the text/icon colour that sits ON a brand fill. White is
     right for most brands; a project with a light brand (amber, lime, pale cyan)
     must override it or the logo glyph becomes unreadable.
     --------------------------------------------------------------------- */
  --primary-ink: #ffffff;
  /* Semantic red for destructive actions (log out, delete). Intentionally NOT
     brand-derived — a danger action must read as danger whatever the brand is. */
  --danger: #dc4646;
  --danger-ink: #ffffff;
  --success: #1f8a5b;
  --success-ink: #ffffff;
  --warning: #b45309;
  --warning-ink: #ffffff;
  --accent-purple: #7b1fa2;
  --brand: var(--primary-blue);
  --brand-2: color-mix(in oklch, var(--primary-blue) 70%, white);
  --brand-soft: color-mix(in oklch, var(--primary-blue) 12%, transparent);
  --brand-softer: color-mix(in oklch, var(--primary-blue) 6%, transparent);
  --brand-ink: var(--primary-ink);
  /* Opaque on purpose: --card-bg is translucent in light mode, which would let
     page content bleed through the navbar once it gains a background on scroll.
     Both inputs to the mix below are opaque, so the result stays opaque.
     Brand-tinted for the same reason as the dark block, but at a fraction of the
     strength: these surfaces are white here, and anything heavier reads as a
     washed-out tint rather than a white card belonging to the brand. */
  --nb-surface: color-mix(
    in oklch,
    var(--primary-blue) 2%,
    var(--container-bg)
  );
  --nb-panel: color-mix(in oklch, var(--primary-blue) 4%, var(--dropdown-bg));
  --nb-shadow: color-mix(in oklch, var(--primary-blue) 22%, transparent);
  --nb-scrim: color-mix(in oklch, var(--primary-blue) 18%, rgb(0 0 0 / 0.55));
  --nb-knob: var(--container-bg);

  /* See the dark block: page-level component surfaces follow the brand. */
  --field-ink: color-mix(in oklch, var(--text-color) 68%, var(--primary-blue));
  --field-bg: color-mix(in oklch, var(--field-ink) 6%, transparent);
  --field-border: color-mix(in oklch, var(--field-ink) 16%, transparent);
  --code-bg: color-mix(in oklch, var(--primary-blue) 4%, var(--input-bg));
  --code-border: color-mix(in oklch, var(--text-color) 12%, transparent);
  --code-fg: #2d8659;
}

/* Global Resets & Layout */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-color);
  line-height: 1.6;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  border-top: none;
}

.container.container-90 {
  max-width: 90%;
  width: 90%;
}

.container.container-80 {
  max-width: 80%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.container.container-70 {
  max-width: 70%;
  width: 70%;
}

.container.container-1200 {
  max-width: 1200px;
}

.container.container-fullwidth {
  max-width: 100%;
  width: 100%;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.container .card,
.container pre,
.container code {
  border-radius: var(--radius-large);
}

h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: var(--heading-color);
}
h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 40px 0 12px 0;
  color: var(--heading-color);
  border: none;
  padding: 0;
}

/* Shared section heading style for project content blocks */
h2.base-section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  text-align: center;
  border: none;
  padding: 0;
}

@media (max-width: 768px) {
  h2.base-section-title {
    font-size: 24px;
  }
}

/* Hero product title: "BrandName - tagline" pattern */
h1.base-hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--text-color);
  margin: 0 0 12px 0;
}

.base-hero-title-brand {
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(120deg, #ff8993 0%, #ff7482 50%, #fb596e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-light .base-hero-title-brand {
  background: linear-gradient(120deg, #ff8993 0%, #ff7482 50%, #fb596e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  h1.base-hero-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  h1.base-hero-title {
    font-size: 26px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 28px 0 10px 0;
  color: var(--heading-color);
}
h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 20px 0 8px 0;
  color: var(--heading-color);
}
h5 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 16px 0 6px 0;
  color: var(--heading-color);
}
h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 14px 0 6px 0;
  color: var(--muted-text);
}
p {
  margin-bottom: 15px;
  color: var(--muted-text);
}

.button:disabled,
.button[disabled],
button:disabled,
button[disabled] {
  background: var(--button-disabled-bg) !important;
  border-color: var(--button-disabled-border) !important;
  color: var(--button-disabled-text) !important;
  box-shadow: var(--button-disabled-shadow);
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
  transform: none;
  filter: saturate(0.7);
}

.button:disabled::before,
.button[disabled]::before,
button:disabled::before,
button[disabled]::before {
  display: none;
}

.button:disabled:hover,
.button[disabled]:hover,
button:disabled:hover,
button[disabled]:hover,
.button:disabled:active,
.button[disabled]:active,
button:disabled:active,
button[disabled]:active {
  background: var(--button-disabled-bg);
  border-color: var(--button-disabled-border);
  color: var(--button-disabled-text);
  box-shadow: var(--button-disabled-shadow);
  transform: none;
}

/* Lists */
ul,
ol {
  margin: 15px 0 15px 25px;
  color: var(--muted-text);
}
li {
  margin-bottom: 8px;
}
ul {
  list-style-type: disc;
}

/* Code blocks */
code,
pre {
  font-family: 'Courier New', 'Monaco', monospace;
  background: var(--code-bg, var(--input-bg));
  border: 1px solid var(--code-border, var(--border-color));
  border-radius: var(--radius-medium);
  padding: 2px 6px;
  font-size: 0.9em;
}
pre {
  padding: 15px;
  margin: 15px 0;
  overflow-x: auto;
  border-radius: var(--radius-medium);
}
body.theme-dark pre code {
  color: var(--code-fg);
  background: transparent;
  border: none;
}
body.theme-light pre code {
  color: var(--code-fg);
  background: transparent;
  border: none;
}

/* Blockquote with icon support */
blockquote {
  border-left: 4px solid var(--blockquote);
  padding-left: 24px;
  margin: 20px 0;
  font-style: italic;
  color: var(--muted-text);
  position: relative;
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: rgba(37, 99, 235, 0.05);
  padding: 16px 24px;
}
blockquote::before {
  content: '';
  color: var(--blockquote);
  position: absolute;
  left: 8px;
  top: 8px;
  width: 1.2em;
  height: 1.2em;
  background-color: currentColor;
  -webkit-mask-image: var(--fa-solid-quote-left);
  mask-image: var(--fa-solid-quote-left);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.3;
}
body.theme-light blockquote {
  background: rgba(37, 99, 235, 0.03);
}

hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 30px 0;
}

/* Grid utility for non-Skeleton sections */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

main {
  flex: 1;
}

@media (max-width: 750px) {
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.row:has(.six.columns) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-left: 0;
  margin-right: 0;
}

.row:has(.six.columns) .six.columns {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
}

.row:has(.six.columns) .six.columns .card {
  margin: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.row:has(.six.columns) .six.columns .card h5 {
  margin-top: 0;
  margin-bottom: 12px;
}

.row:has(.six.columns) .six.columns .card p {
  margin-bottom: 0;
  flex: 1;
}

/* Blog card links - remove outline/border and add hover effect */
.card > a {
  outline: none;
  border: none;
  display: block;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card > a:focus {
  outline: none;
  border: none;
}

/* Add blue bottom border to clickable cards on hover using box-shadow */
.card:has(> a) {
  box-shadow: inset 0 -1px 0 0 transparent;
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.card:has(> a):hover {
  box-shadow:
    inset 0 -1px 0 0 var(--link),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Highlight bottom border on hover for tool-card links */
a.tool-card {
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.2s ease;
}

a.tool-card:hover {
  border-bottom-color: var(--link) !important;
}

.card:has(> a):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.card > a:hover {
  cursor: pointer;
}

/* Responsive: stack cards on mobile */
@media (max-width: 768px) {
  .row:has(.six.columns) {
    grid-template-columns: 1fr;
  }
}

/* Theme switcher styles moved to assets/css/theme_switcher.css */

/* Remove default focus outlines and dotted borders from links */
*:focus {
  outline: none !important;
}

a:not(:where([class*='nb-'])) {
  border-bottom: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tools-section-title {
  text-align: center;
  margin-bottom: 16px;
}
