/* Shared utility classes — extracted from inline style="" attributes.
   Loaded globally in _base.html, after the theme so it can override. */

/* Visibility toggle. Replaces inline style="display: none;". Toggled from JS
   via classList.add/remove('is-hidden') instead of element.style.display.
   !important so it reliably hides regardless of the element's own display rule. */
.is-hidden {
    display: none !important;
}

/* Clickable rows / elements. Replaces inline style="cursor: pointer;". */
.cursor-pointer {
    cursor: pointer;
}
