/* Simple responsive style for Charcuterie Calculator */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fafafa;
  color: #333;
}
header, footer {
  text-align: center;
  padding: 1rem;
  background: #2c3e50;
  color: #fff;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
#input-section, #category-select, #results {
  margin-bottom: 2rem;
}
label {
  font-weight: bold;
  margin-right: .5rem;
}
input[type="number"] {
  width: 70px;
  padding: .3rem;
}
button {
  padding: .5rem 1rem;
  background: #27ae60;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-left: .5rem;
}
button:hover { background: #1e8449; }
.item-group {
  margin-top: 1rem;
}
.item-group h3 {
  margin-bottom: .5rem;
}
.item-group label {
  display: inline-block;
  width: 200px;
}
@media (max-width: 600px) {
  .item-group label {
    width: 100%;
  }
}
