body {
  font-family: Arial, sans-serif;
}
.container {
  width: 80%;
  margin: auto;
}
.cart-header {
  text-align: center;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table, th, td {
  border: 1px solid #ddd;
}
th, td {
  padding: 15px;
  text-align: center;
}
th {
  background-color: black;
}
.total {
  text-align: right;
  margin-top: 20px;
}
.actions {
  text-align: center;
}
.button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.button:hover {
  background-color: #45a049;
}
.remove-btn {
  background-color: #f44336;
}
.remove-btn:hover {
  background-color: #e53935;
}