/* Estilos CSS - Você pode personalizá-los */
body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  flex-direction: column;
}

#formulario {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.destilado {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.destilado label {
  width: 100px;
}

.destilado input[type="number"] {
  width: 80px;
  padding: 5px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.destilado button {
  background-color: #f44336; /* Cor vermelha para o botão Remover */
  color: white;
  padding: 5px 10px;
  margin-left: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.destilado button:hover {
  background-color: #d32f2f; /* Cor vermelha mais escura ao passar o mouse */
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#resultado {
  margin-top: 20px;
}

h1 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}