
    .cart-header {
      font-size: 1.5rem;
      font-weight: bold;
      color: #00668c;
    }
    .product-title {
      font-weight: bold;
      color: #00668c;
    }
    .summary-box {
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1rem;
    }
    .btn-checkout {
      background-color: #3bafc0;
      color: white;
      font-weight: bold;
    }
    .btn-checkout:hover {
      background-color: #3682c8;
      color: white;
    }
    .table {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.table th {
  background-color: #dee4ed;
  color: #000000;
  font-weight: 600;
}

.table td {
  vertical-align: middle;
}

.product-title {
  font-weight: 600;
  color: #00394d;
  font-size: 1rem;
}

.input-group input[type="number"] {
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 60px;
}

.input-group .btn {
  border-radius: 6px;
}

.input-group .btn-outline-secondary {
  border-color: #ccc;
  color: #555;
}

.input-group .btn-outline-secondary:hover {
  background-color: #007997;
  color: #fff;
}

.summary-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.summary-box .d-flex span {
  font-size: 1rem;
}

.summary-box .text-success {
  font-size: 1.25rem;
}


select.form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 75%;
}

.alert-info {
  background-color: #d7f4f7;
  border-color: #c1ecf1;
  color: #007997;
  font-weight: 500;
  border-radius: 8px;
}

img.img-thumbnail {
  border-radius: 8px;
  object-fit: cover;
}