.meals-page {
  text-align: center;
  padding: 2rem;
}

.goal-buttons {
  margin-bottom: 2rem;
}

.goal-buttons button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 18px;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.goal-buttons button:hover {
  background-color: #45a049;
}

.meal-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.meal-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.meal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.meal-card-content {
  padding: 15px;
}

.meal-title {
  font-size: 18px;
  font-weight: bold;
}

.meal-desc {
  font-size: 14px;
  margin: 10px 0;
}

.meal-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}
