body {
  font-family: Arial, sans-serif;
  padding: 20px;
}
	
.cart-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-table-container table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  margin-bottom: 30px;
}


th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

th {
  background-color: #f4f4f4;
}

.color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #333;
  vertical-align: middle;
  margin-left: 5px;
}

.total-row {
  font-weight: bold;
  background-color: #f9f9f9;
}

.checkout-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0a047a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

.checkout-button:hover {
  background-color: #160be0;
  text-decoration: none;
  color: #fff;
}

/* Responsive cho mobile */
@media screen and (max-width: 768px) {
  body {
    padding: 10px;
  }

  th, td {
    font-size: 14px;
    padding: 8px;
  }

  .checkout-button {
    width: 100%;
    text-align: center;
  }
}