/* =========================
   Global base (reset) + minimal tokens + shared sidebar
   ========================= */

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
  background: none;
  outline: none;
}
body {
  margin: 0;
  color: var(--official_black);
  font-family: "Libertinus Serif";
}

h1, h2, h3, h4 {
font-weight: 600;}

/* Minimal design tokens (brand) */
:root {
  --primary: #008d36;
  --secondary: #ff7043;
  --official_black: #1a1a1a;
  --official_white: #f8fafb;
  --accent1: #264D59;
  --accent2: #ffc107;
}

.body-no-scroll { overflow: hidden; }

.red-number3 {
  position: relative;
}

.red-number3::after {
  content: "3";
  position: absolute;
  top: -6px;
  left: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;            /* lets 10+ fit */
  border-radius: 999px;
  background: #e53935;       /* red */
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 0 2px #fff; /* small ring so it pops */
}

.red-number2 {
  position: relative;
}

.red-number2::after {
  content: "2";
  position: absolute;
  top: -6px;
  left: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;            /* lets 10+ fit */
  border-radius: 999px;
  background: #e53935;       /* red */
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 0 2px #fff; /* small ring so it pops */
}
.mini-sidebar {
  padding: 24PX;
}