/* ✅ Table Styles */



table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

table.table th,
table.table td {
  border: 1px solid #ccc;
  padding: 6px;
  text-align: left;
  vertical-align: middle;
}

table.table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* ✅ Image sizing */
table.table img {
  max-width: 45px;
  height: auto;
  display: block;
}

/* ✅ Inputs */
table.table input[type="number"],
table.table input[type="text"] {
  width: 60px;
  padding: 4px;
  font-size: 14px;
  text-align: right;
}

button #addToCart {
  display: block;
  width: 100%;
  font-size: 16px;
}
/* Wrap product table for scroll */
.table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

.table thead, .table tbody, .table tr {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.table td, .table th {
  word-wrap: break-word;
  padding: 3px;
  font-size: 12px;
}

/* Mobile tweaks */
@media(max-width:768px) {
  .table td, .table th {
    font-size: 12px;
    padding: 2px;
  }

  .table input[type="number"],
  .table input[type="text"] {
    width: 25px;
    font-size: 12px;
  }

  .table img {
    max-width: 5px;
  }

  #addToCart {
    font-size: 12px;
    padding: 4px;
  }
}
