.microondas-container {
  max-width: 600px;
  background: #fff;
  padding: 30px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.microondas-titulo {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
}

.microondas-label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.microondas-input, .microondas-select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.microondas-botao {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.microondas-botao:hover {
  background-color: #0056b3;
}

.microondas-resultado {
  margin-top: 25px;
  text-align: center;
  font-size: 18px;
  color: #444;
}