.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.table th,
.table td {
  padding: 0px 0px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}

.table th {
  background-color: #f9f9f9;
  font-weight: 600;
  font-size: 15px;
}
.full-text input,
.full-text select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  margin: 4px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fdfdfd;
  transition: border-color 0.3s;
}

.full-text input:focus,
.full-text select:focus {
  border-color: #999;
  outline: none;
}
#span_total_price,
#span_delivery_price,
#span_price {
  font-weight: 600;
  color: #000;
}
.btn.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #333;
}
@media (max-width: 768px) {
  .full-text td {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }

  .full-text tr {
    display: block;
    margin-bottom: 15px;
  }

  .btn.btn-primary {
    width: 80%;
    text-align: center;
  }
}

.btn-remove {
  background-color: transparent;
  color: #888;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-remove:hover {
  background-color: #f8d7da;
  color: #d00;
}