/* Utility class for horizontal button alignment */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
/* App-wide styles (Tailwind is loaded via assets/vendor/). */

html, body {
  height: 100%;
}

/* Make wide tables scroll nicely inside content area. */
main {
  overflow: hidden;
}
