/* --- FiveMinFree scrollbar & textarea fixes --- */

/* Prevent page width "jumps" when the vertical scrollbar appears/disappears. */
html {
  /* Modern fix (Chromium, Firefox, Safari 17+): reserve gutter without changing layout */
  scrollbar-gutter: stable;
}

/* Fallback for older engines: always reserve the vertical scrollbar. */
@supports not (scrollbar-gutter: stable) {
  html { overflow-y: scroll; }
}

/* Make sure textareas never overflow their container horizontally
   and only resize vertically (we already set these inline in the page,
   but this is a global safety net). */
textarea {
  max-width: 100%;
  box-sizing: border-box;
  resize: vertical;
}