/* Volume pricing table: horizontal scroll on small screens */
@media (max-width: 900px) {
  .fl-builder-content-primary .fl-module .table-card {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .fl-builder-content-primary .fl-module .table-card table.pricing {
    width: max-content;
    min-width: 720px;
  }
}

/* Fee toggle buttons above the 4 cards */
@media (max-width: 700px) {
  .fl-builder-content-primary .fl-module .fee-toggle-wrap {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
  }

  .fl-builder-content-primary .fl-module .fee-toggle {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important; /* overrides inline margin on person/month group */
    box-sizing: border-box;
  }

  .fl-builder-content-primary .fl-module .fee-toggle-btn {
    flex: 1 1 0;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }
}
