.table-section {
  width: 100%;
  overflow-x: auto;
  padding: 25px;
}

.table-title {
  margin-top: 10px;
}

.product-table td,
.product-table th {
  /* min-width: 50px; */
  white-space: nowrap;
  padding: 5px;
}

.product-table tr:nth-child(even) {
  background: #3B3C3D;
}

.product-table tr {
  min-height: 50px;
  height: 50px;
}

.product-table {
  margin: 0 auto;
}

.table-section table {
  width: 100%;
}

.table-section table,
.table-section th,
.table-section td {
  border: 1px solid #F0A928;
  border-collapse: collapse;
  text-align: center;
}

.table-section .table-link {
  text-decoration: none;
  color: white;
}

.table-section .price-unit {
  /* position: relative; */
}

.table-section .offer {
  position: relative;
  color: rgb(255, 50, 50);
  font-size: 13px;
  /* right: 0; */
  font-family: 'Kalameh-Bold';
}

.table-section .offer::after {
  content: "";
  height: 1px;
  width: 100%;
  background: red;
  position: absolute;
  top: 12px;
  right: 0;
  transform: rotate(-15deg);
}

.table-section .small-font {
  font-size: 13px;
}

.table-section th {
  font-size: 13px;
}
/* 
thead {
  position: sticky;
  top: 64px;
} */

