/* Estilos para tabla de descuentos por volumen */
.product-discount-wrapper {
  border: 1px solid #F5A442;
  overflow: hidden;
 /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  margin: 20px 0;
}

.product-discount-header {
  background-color: #F5A442;
  color: #fff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-product-discounts {
  margin: 0;
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.table-product-discounts thead {
  background-color: #fff0d9;
}

.table-product-discounts thead tr {
  border: none;
}

.table-product-discounts thead th {
  color: #333;
  font-weight: 700;
  padding: 16px 20px;
  border: none;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
  background-color: #fff0d9;
}

.table-product-discounts tbody tr {
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
}

.table-product-discounts tbody tr:last-child {
  border: none;
}

.table-product-discounts tbody td {
  padding: 14px 20px;
  color: #333;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 500;
  background-color: #fff;
}

.table-product-discounts tbody tr:hover {
  background-color: #FFF9F4;
  transition: background-color 0.2s ease-in-out;
}