/* === Page Height Constraint === */
html,
body {
  height: 1650px; /* Reducing will compress layout; increasing can break intended iframe fit on jam apge. */
}

@media (max-width: 650px) {
  .container {
    height: auto !important;
    min-height: 100% !important;
    display: block !important;
  }

  .table-box {
    flex: none !important;
    height: auto !important;
    min-height: min-content !important;
    margin-bottom: 2rem !important;
  }

  .rules-content {
    height: auto !important;
    overflow: visible !important;
  }
}
