.food-page {
  min-height: 100vh;
  margin: 0;
  background: #f0f0f0;
  font-family: Arial, sans-serif;
}

.food-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  flex-direction: column;
  background: white;
}

.food-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.food-homebutton,
.food-language {
  margin: 5px 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 4px;
  background: #0077b6;
  color: white;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.food-homebutton:hover,
.food-homebutton:focus-visible,
.food-language:hover,
.food-language:focus-visible {
  background: #005f86;
}

.food-container h1 {
  margin-top: 40px;
  text-align: center;
}

.food-button-group {
  display: flex;
  margin: 30px auto;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.food-button-group button {
  padding: 15px 25px;
  border: 0;
  border-radius: 4px;
  background: #0077b6;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.food-button-group button:hover,
.food-button-group button:focus-visible {
  background: #005f86;
}

.food-button-group button:disabled {
  opacity: 0.6;
  cursor: wait;
}

#recipe-response {
  min-height: 150px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f8f9fa;
  font-family: monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
