.main-fullPage {
  padding: 10px;
}


#total-quantity,
#total-price {
  background-color: #f0f8ff;     /* Light blue background */
  color: #1a1a1a;                /* Dark text for contrast */
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin: 10px 5px;
  font-size: 16px;
  border: 1px solid #ccc;
}


.checkout-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 12px 10px;
  font-size: 16px;
}

.checkout-item span,
.checkout-item .quantity-control {
  flex: 1;
  text-align: center;
}

.item-name {
  flex: 2;
  text-align: left;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.qty-btn {
  background-color: #ddd;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  font-size: 18px;
  cursor: pointer;
}

#checkout-summary {
  margin-top: 20px;
  font-size: 18px;
  text-align: right;
}

.checkout-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.checkout-buttons button {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}
