.loading_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    display: block;
    position: absolute;
  }

  .loader_logo {
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 50px);
    top: 38%;
  }

  .loader_logo img {
    height: 100%;
    width: 100%;
  }

  .loading {
    border: 3px solid rgba(102, 51, 153, 0.45);
    position: absolute;
    left: calc(50% - 40px);
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border-top-color: #8b5cf6;
    animation: loader 1s ease-in-out infinite;
    -webkit-animation: loader 1s ease-in-out infinite;
  }

  @keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  /* POS and Sales Report Print Styles */
@media print {

  /* Force all text to black and bold */
  body, body * {
    color: #000 !important;
    font-weight: bold !important;
    background: transparent !important;
  }

  /* Force table cells to black text and remove background */
  table, th, td, tr {
    color: #000 !important;
    background: transparent !important;
    border-collapse: collapse !important;
    border: 1px solid #000 !important; /* optional: keep table grid lines visible */
  }

  /* Remove Vue Good Table header backgrounds */
  .vgt-header th, .vgt-table th {
    background-color: #fff !important;
    color: #000 !important;
    font-weight: bold !important;
  }

  /* Remove badge colors */
  .badge, .badge-outline-success, .badge-outline-info, .badge-outline-warning, .badge-outline-primary {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

  /* Remove inputs and form element backgrounds */
  input, select, textarea {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

  /* Hide non-essential UI elements */
  .btn, .filter-panel, .pagination, .no-print {
    display: none !important;
  }

  /* Optional: adjust font sizes for print */
  body {
    font-size: 12px !important;
    line-height: 18px !important;
    margin: 0.5cm !important;
  }
}
