.bazar-wrapper {
    background: #fff;
    padding: 16px;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: sans-serif;
  }
  .bazar-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .bazar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  .bazar-buttons button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
  }
  .bazar-table-wrapper {
    overflow-x: auto;
  }
  .bazar-table {
    width: 100%;
    border-collapse: collapse;
  }
  .bazar-table th,
  .bazar-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }
  .bazar-table input {
    width: 100%;
    padding: 6px;
    text-align: center;
  }
  .bazar-total {
    text-align: right;
    margin-top: 16px;
    font-weight: bold;
    font-size: 18px;
  }
  @media (max-width: 600px) {
    .bazar-buttons {
      flex-direction: column;
    }
  }
  .no-print {
    display: table-cell;
  }
  .hide-print {
    display: none !important;
  }
  