.shopping-list {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.form-row input,
.form-row button {
  flex: 1 1 auto;
  padding: 0.5rem;
  font-size: 1rem;
}
#list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
#list-table th,
#list-table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}
#list-table thead {
  background-color: #f9f9f9;
}
#list-table thead th {
  font-size: 1.1rem;
}
@media (max-width: 480px) {
  #list-table th,
  #list-table td {
    font-size: 1rem;
    padding: 0.75rem;
  }
}
