.mealplan {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
  /* ---- DAY CARD ---- */
}
.mealplan__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  padding-top: 8px;
}
.mealplan__col {
  background: white;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.mealplan__col:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.mealplan__col-head {
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e9ef;
  color: #8a2be2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mealplan__head-actions {
  display: inline-flex;
  gap: 6px;
}
.mealplan__head-actions button {
  font-size: 13px;
  color: #8a2be2;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e6e9ef;
  background: #f6f7f9;
  transition: background 0.15s, border-color 0.15s;
}
.mealplan__head-actions button:hover {
  background: #fff;
  border-color: #cdd3df;
}
.mealplan__meal {
  background: #fafbfc;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.mealplan__meal:hover {
  background: #fff;
  border-color: #caa0f2;
}
.mealplantitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a8f99;
}
.mealplan__edit {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.mealplan__input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mealplan__input:hover {
  border-color: #cdd3df;
}
.mealplan__input:focus {
  outline: none;
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.15);
}
.mealplan__view {
  display: block;
}
.mealplan__text-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  word-break: break-word;
}
.mealplan__text-details {
  font-size: 14px;
  color: #7b7f86;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 1200px) {
  .mealplan__grid {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  }
}
@media (max-width: 830px) {
  .mealplan__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}
@media (max-width: 540px) {
  .mealplan__grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=meal.css.map */