body {
  background-color: #aacbdf;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;   
}

#mainContainer {
    background-color: rgb(21, 118, 150);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(255, 215, 0, 0.3);
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

input,
select,
button {
  padding: 10px;
}

button {
  background-color: #33b986;
  border: none;
  color: #2b2b2b;
  cursor: pointer;
}

button:hover {
  background-color: #FFC700;
}

#mealPlanDisplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 20px;
}

#mealPlanDisplay div {
  padding: 20px;
  background-color: #3b3b3b;
  box-shadow: 0 0 10px 5px #FFD700;
  width: 100%;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #FFD700;
  padding: 20px;
  text-align: center;
  vertical-align: top;
}

img {
  border-radius: 20px;
  object-fit: cover;
}

a {
  color: #FFD700;
  ;
}