body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 1rem;
  background: #f4f4f4;
  color: #333;
}

h1, h2 {
  text-align: center;
}

#username {
  font-weight: bold;
  color: #0077cc;
}

form, #ideas {
  max-width: 800px;
  margin: 1rem auto;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
}

input[type="text"] {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  margin-top: 0.3rem;
  box-sizing: border-box;
}

button {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background: #005fa3;
}

#plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#ideas {
  font-size: 0.9rem;
  margin-top: 2rem;
  background: #eef5ff;
}

#ideas h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

#previousMeals {
  list-style-type: disc;
  padding-left: 1.2rem;
}

#previousMeals li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #444;
}

/* Responsive ab hier */
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  #plan {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  input[type="text"] {
    font-size: 1.2rem;
  }

  button {
    font-size: 1.2rem;
  }

  #ideas {
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  #previousMeals li {
    font-size: 0.85rem;
  }
}
