:root {
  --brand-blue: #0b3d91;
  --brand-blue-dark: #082f6b;
  --brand-orange: #f47c20;
  --accent-yellow: #f9d648;
  --accent-black: #111111;
  --brand-light: #f4f7fb;
  --topbar-height: 40px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 112.5%;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--brand-light);
  color: #1b1b1b;
  font-size: 1.12rem;
  letter-spacing: 0.25px;
  line-height: 1.6;
}

/* Scrollbar styling */
html {
  scrollbar-width: auto;
  scrollbar-color: var(--brand-blue) #ffffff;
}

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: var(--brand-blue);
  border-radius: 12px;
  border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-blue-dark);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
