.table-container {
    width: 100%;
    overflow-x: auto;
}
.myDivToPrint {
  height: 2in;
  width: 3in;
  top: 0;
  left: 0;
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.myDivToPrintSingle {
    height: 6in;
    width: 4in;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 18px;
    line-height: 18px;
}
@media print {
    @page {
        size: 3in 2in;
        margin: 0;
      }

      body {
        margin: 0;
        padding: 0;
      }
  .myDivToPrint {
    height: 2in;
    width: 3in;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
  }
  .myDivToPrintSingle {
      height: 6in;
      width: 4in;
      top: 0;
      left: 0;
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      line-height: 18px;
    }
  .tagp {
    margin: 0;
    padding: 0;
  }
  .receiptDivToPrint {
    width: 3.5in;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
  }
}
/* ---------------------------------------------------------------------
   Mobile layout fixes
   --------------------------------------------------------------------- */
.min-width-0 {
    min-width: 0;
}

/* Tables scroll inside their block on touch devices */
.table-responsive,
.table-container {
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
    /* Block header: let the action buttons drop below the title instead of
       overflowing the block */
    .block-header {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }
    .block-header .block-title {
        min-width: 0;
    }
    .block-header .block-options {
        flex: 0 1 auto;
        max-width: 100%;
        padding-left: 0;
        margin-left: auto;
    }
    .block-header .block-options form {
        display: inline-block;
    }
    .block-header .block-options .btn-group {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .block-header .block-options .btn-group > .btn {
        border-radius: 0.25rem !important;
        margin-left: 0;
    }
    .block-header .block-options .btn-group > .btn + .btn {
        margin-left: 0;
    }

    /* Page heading bar: the breadcrumb and any action buttons wrap */
    .bg-body-light .content-full .breadcrumb {
        flex-wrap: wrap;
    }

    /* Pagination should wrap rather than run off the screen */
    .dataTables_paginate .pagination,
    .pagination {
        flex-wrap: wrap;
    }
}
