.recipe-converter {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid #f4a261;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.recipe-converter h3 {
  margin: 0 0 14px 0;
  color: #264653;
  font-size: 1.2em;
}

.converter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 1.05em;
}

.converter-row input,
.converter-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-family: inherit;
}

.converter-row input {
  width: 70px;
}

#conv-result {
  font-weight: 700;
  color: #e76f51;
  font-size: 1.25em;
  min-width: 60px;
}

@media (max-width: 600px) {
  .converter-row {
    font-size: 0.95em;
  }
  .converter-row select {
    max-width: 140px;
  }
}
