table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.delete-button {
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.minus-button {
  background-color: orange;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  margin-right: 5px;
}

.plus-button {
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  margin-left: 5px;
}

.qtyInput {
  width: 50px;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
}
.obsInput{
  width: 90%;
  font-size: 14px;

}

tr:hover {
  background-color: #f5f5f5;
}

.delete-button:hover, .minus-button:hover, .plus-button:hover {
  opacity: 0.7;
}

.delete-button:active, .minus-button:active, .plus-button:active {
  opacity: 0.5;
}
.clientData {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
#saveButton{
  margin-left: 20px;
}
#saveButton {
  background-color: #ffff;
  border: 1px solid #333;
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#saveButton i {
  margin-right: 10px;
}
#sound{
  display: none;
}