/* Shared critical styles for exercise and quiz detail pages. */
:root {
  --pri-yellow: #f09a0f;
  --text-blue: #25265e;
  --black: #000000;
  --white: #ffffff;
  --header-bor-bottom: #f4f4f4;
  --header-border: rgba(246, 246, 246, 0.4);
  --load-wrap-bg: rgba(31, 11, 11, 0.8);
}

.dark-theme { background-color: #121225; }
body.dark-theme {
  --text-blue: #ffffff;
  --black: #eeeeee;
  --white: #121225;
  --header-bor-bottom: #0d0d1e;
  --header-border: rgb(49, 49, 49);
}

*, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; }
body { background-color: #fff; }
.header {
  top: 0;
  width: 100%;
  background-color: var(--white) !important;
  z-index: 999;
  border-bottom: 1px solid var(--header-bor-bottom);
  position: sticky;
}
.header-border { border-bottom: 2px solid var(--header-border); }
