/**
 * importer.less
 *
 * By default, new Sails projects are configured to compile this file
 * from LESS to CSS.  Unlike CSS files, LESS files are not compiled and
 * included automatically unless they are imported below.
 *
 * For more information see:
 *   https://sailsjs.com/anatomy/assets/styles/importer-less
 */
/*! This special bang (!) comment is here to trick the `hash` Grunt task into working out-of-the-box, without any real CSS. You can delete this once you've imported ≥1 .less file as demonstrated above. */
h1 {
  color: orange;
  margin: auto;
}
h2 {
  color: orange;
  margin: auto;
}
h3 {
  color: #b87801;
  margin: auto;
}
.logoimg {
  width: 100px;
}
.logoimg:hover {
  cursor: pointer;
}
.headerContainer {
  border: 1px solid #dde6d7;
  display: flex;
  justify-content: space-between;
  padding: 0 10px 0 10px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #dcf3d8;
  align-items: center;
}
.headerBtns {
  color: #da9149;
  font-size: 30px !important;
}
.indexPageMeal {
  width: 100px;
  height: 100%;
  object-fit: cover;
}
.mealCard {
  border: 1px solid #b6b6b6;
  flex: 1 1 calc(30.33%);
  background-color: #f8f7f7;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 3px 5px 5px 0px #dcf3d8;
  border-radius: 5px;
  margin: auto;
  height: auto;
  overflow: hidden;
}
.mealCard:hover {
  box-shadow: 3px 5px 5px 3px #76af6c;
  background-color: #f1e4e4;
  cursor: pointer;
}
.mealsListing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.mealName {
  background: #ffbd72;
  color: #5c2c10;
  font-size: 1em;
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  height: 20%;
  display: flex;
  box-sizing: border-box;
  text-align: center;
  /* align-content: center; */
  justify-content: center;
  padding: 5px 0px 5px 0px;
  box-shadow: 0px 2px 2px 0px #7a9c79;
  color: black;
  margin-bottom: 10px;
}
.mealPrice {
  background: #98fa9c;
  color: #5c2c10;
  font-weight: bold;
  font-size: 0.8em;
  border-radius: 0px 0px 5px 5px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  text-align: center;
  justify-content: end;
  height: 25px;
  vertical-align: bottom;
  border-radius: 5px 10px 5px 10px;
  padding: 5px 5px 5px 0px;
}
.mealCardBtn {
  font-size: 20px;
  color: #f14343;
  position: absolute;
  display: flex;
  flex-basis: revert;
  flex-flow: column;
  text-shadow: 0px 1px 1px #5f6460;
  justify-content: space-between;
  margin: 0px 0px 3px 10px;
  width: auto;
  /* border: 1px solid red; */
  background: white;
  padding: 3px;
  box-shadow: 0 0 8px 2px black;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  border-radius: 10px;
}
.mealScheduleBtn:hover {
  cursor: pointer;
  font-size: 1.3em;
  color: #d82c2c;
  text-shadow: 0px 1px 1px #353836;
}
.mealAddToCartBtn:hover {
  cursor: pointer;
  font-size: 1.3em;
  color: #d82c2c;
  text-shadow: 0px 1px 1px #353836;
}
.mealAddToCartBtn {
  padding: 3px 0px 5px 0px;
  font-size: 21px;
  color: #f14343;
}
/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.mealPriceStrip {
  display: flex;
  /*background: #98fa9c;*/
  justify-content: space-between;
  gap: 10px;
  padding: 0px 10px;
}
.mealImgContainer {
  height: 100px;
  border: 1px solid red;
}
.mealImg {
  height: 111px;
  /*border: 1px solid red;*/
}
.mealInfo {
  display: flex;
  gap: 10px;
  margin: auto;
  width: 80%;
  font-size: 1em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mealDetail {
  width: 100%;
}
.mealDetails {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 calc(55%);
}
.mealInfoImg {
  width: 200px;
  flex: 1 1 calc(40%);
  text-align: center;
}
.mealInfoBtns {
  margin: auto;
}
.mealDetailsOrderForm {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 5%;
}
.formField {
  width: 100%;
  margin-bottom: 1em;
}
.formInput {
  width: 100%;
  height: 30px;
  /*all: unset;*/
  /* margin-bottom: 5px; */
  font-weight: lighter;
  font-size: 1rem;
  color: #234823;
  /* height: 50px; */
  border-radius: 5px;
  border: 1px solid #879182;
  /* padding: 2px; */
  outline: none;
  /* margin-top: 0.5rem; */
  box-sizing: border-box;
  /* width: 100%; */
  /* font-weight: 100; */
  /* font-size: x-large; */
  color: #363636;
  background: #fafffa9e;
}
.body {
  background: #faf3fd2b;
}
.body-content {
  margin-top: 20px;
  border: 1px solid #dde6d7;
  display: flex;
  padding: 20px 10px 20px 10px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #dcf3d8;
}
.mainpageBtnsContainer {
  width: 100%;
  display: grid;
  place-content: center;
}
.mainpgBtn {
  width: 300px;
  margin: 10px;
  height: 40px;
  background: #71b858;
  border-radius: 10px;
  box-shadow: 1px 1px 2px 1px #bfb1a2;
  border: 1px solid #7a857a;
  color: white;
  font-weight: 500;
  font-size: 2.0em;
  display: block;
}
.mainpgBtn:hover {
  cursor: pointer;
  border: 1px solid #454b45;
}
.mainpgBtn-small:hover {
  cursor: pointer;
  border: 1px solid #454b45;
}
.hidden {
  display: none;
}
.hiddenv {
  visibility: hidden;
}
input {
  margin-bottom: 5px;
  font-weight: lighter;
  font-size: 1rem;
  color: #234823;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #879182;
  padding: 15px;
  outline: none;
  margin-top: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  font-weight: 100;
  font-size: x-large;
  color: #363636;
  background: #fafffa9e;
}
.red-border {
  border: 1px solid #ff0000;
  background: #fff3f3;
}
.middle {
  margin: auto;
}
.notificationDiv {
  visibility: hidden;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-family: monospace;
}
.notificationDiv_ok {
  background: #e2f8e1;
  text-align: center;
  padding: 12px;
  font-family: monospace;
  border: 1px solid #f2f2f2;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 90%;
  border-radius: 5px;
  box-shadow: 1px 1px 2px 2px #e9f8e9;
  /*color: #32b132;*/
  color: #000000;
  text-shadow: 0px 1px white;
  font-size: 14px;
  box-sizing: border-box;
}
.notificationDiv_warning {
  visibility: visible;
  background: #ffe4b7;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-family: monospace;
  border: 1px solid #fecb89;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 90%;
  border-radius: 5px;
  box-shadow: 1px 1px 2px 2px #dde6d9;
  /*color: #714c31;*/
  color: #000000;
  text-shadow: 0px 1px white;
  font-size: 14px;
  box-sizing: border-box;
}
.notificationDiv_error {
  visibility: visible;
  background: #ffb7b7;
  text-align: center;
  padding: 12px;
  font-family: monospace;
  border: 1px solid #f80e0e;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 90%;
  border-radius: 5px;
  box-shadow: 1px 1px 2px 2px #dde6d9;
  color: #000000;
  text-shadow: 0px 1px white;
  font-size: 14px;
  box-sizing: border-box;
}
.loaderDiv {
  visibility: hidden;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  justify-content: center;
}
.mainpgBtn-disabled-small {
  width: 250px;
  margin: 10px;
  height: 45px;
  background: #ecf4ed;
  border-radius: 10px;
  box-shadow: 1px 1px 2px 1px #bfb1a2;
  border: 1px solid #7a857a;
  color: #b4b4b4;
  font-weight: 500;
  font-size: 1.5em;
  display: block;
  margin: auto;
  text-shadow: -1px -1px 1px #ffffffcc cc, 1px 1px 1px #ffffffcc cc;
}
.mainpgBtn-small {
  width: 250px;
  height: 45px;
  background: #71b858;
  border-radius: 10px;
  box-shadow: 1px 1px 2px 1px #bfb1a2;
  border: 1px solid #7a857a;
  color: white;
  font-weight: 500;
  font-size: 1.5em;
  display: block;
  margin: 10px;
}
.formWrapper {
  /*display: grid;
    place-content: center;*/
}
.googleSignIn {
  border: 1px solid gray;
  height: 14%;
  background: #33602f9c;
  margin: auto;
  padding: 10px;
  color: white;
  display: flex;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  border-radius: 10px;
  text-decoration: none;
}
.checkbx {
  height: auto;
  margin: auto;
}
/* Container styling */
.checkout-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
  font-family: 'Lato', sans-serif;
}
/* Header styling */
.checkout-table thead th {
  background-color: #e9f2eb;
  color: #2a4d2c;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 1rem;
}
/* Row styling */
.checkout-table tbody tr {
  background-color: #ffffff;
}
/* Cell styling */
.checkout-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #f0f0f0;
  vertical-align: middle;
  color: #555;
}
/* Price/currency cells */
.checkout-table .price-cell {
  color: #2a4d2c;
  font-weight: bold;
  text-align: right;
}
/* Quantity input */
.checkout-table input[type="number"] {
  width: 4rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
}
/* Remove button */
.checkout-table .remove-btn {
  background: none;
  border: none;
  color: #b33;
  cursor: pointer;
  font-size: 1.2rem;
}
.checkout-table .remove-btn:hover {
  color: #e00;
}
/* Total line */
.total-row td {
  font-size: 1.1rem;
  background-color: #f7faf7;
  font-weight: bold;
}
/* Add-to-cart button */
.checkout-summary .add-to-cart {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  background-color: #2a4d2c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.checkout-summary .add-to-cart:disabled {
  background-color: #888;
  cursor: not-allowed;
}
.checkout-summary .add-to-cart:not(:disabled):hover {
  background-color: #3d6f3f;
}
.cartNotification {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.cartNotification .fa-shopping-cart {
  font-size: 1.75rem;
  color: #a2b550;
  /* Napikanga deep green */
  transition: color 0.2s ease;
}
.cartNotification:hover .fa-shopping-cart {
  color: #3d6f3f;
  /* Slightly lighter green on hover */
}
.cartNotification .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff3939;
  color: #ffffff;
  border: 2px solid #e9f2eb;
  border-radius: 50%;
  padding: 0.15em 0.4em;
  font-size: 0.65rem;
  font-weight: bold;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  animation: pulse 5s ease-in-out infinite;
}
/* Pulse animation for the badge */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.95;
  }
}
.deliverySchedule {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  background: none;
  /* Remove background */
}
/* Base button: softer/faded Napikanga orange */
.scheduleBtn {
  background-color: rgba(244, 128, 36, 0.15);
  /* Faded orange */
  color: #f48024;
  /* Main orange */
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid #f4c9a3;
  /* Light border */
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}
.scheduleBtn:hover {
  background-color: #fcb085;
  transform: scale(1.03);
  color: #482320;
}
.scheduleBtnSelected {
  background-color: #fcb085;
  transform: scale(1.03);
  color: #482320;
}
.scheduleBtnSelected2 {
  background-color: #fcb085;
  transform: scale(1.03);
  color: #482320;
}
/* Highlighted action button */
.scheduleBtn2 {
  background-color: #f48024;
  /* Solid orange */
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.scheduleBtn2:hover {
  background-color: #e26f12;
  transform: scale(1.05);
}
/* Responsive layout for mobile */
@media (max-width: 600px) {
  .deliverySchedule {
    flex-direction: column;
    align-items: stretch;
  }
  .scheduleBtn,
  .scheduleBtn2 {
    width: auto;
    text-align: center;
  }
}
.scheduledTimeDisplay {
  /*display: inline-block;*/
  background-color: #f0f9ff;
  /* Light blue background */
  color: #0c4a6e;
  /* Deep blue text */
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid #bae6fd;
  /* Soft blue border */
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  width: 100%;
}
.scheduledTimeDisplay:hover {
  background-color: #e0f2fe;
  cursor: default;
}
.quantityspan {
  width: 1em;
  display: inline-block;
  border: 1px solid gray;
  height: 1em;
  padding: 2px 5px 4px 5px;
  text-align: center;
  font-size: 1em;
  color: black;
  border-radius: 5px;
  background: #fcfffc;
}
.quantitydials {
  width: 100%;
  /* border: 1px solid red; */
  align-items: baseline;
  align-content: baseline;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  /* justify-items: unset;*/
}
.subtractBtn {
  color: #fcc065;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.addBtn {
  color: #4dca4d;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.btn-gray {
  color: gray;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.btn-gray:hover {
  color: gray;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.deleteBtn {
  color: #fc6565;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.deleteBtn:hover {
  cursor: pointer;
  color: red;
  text-shadow: 1px 3px 3px #e3f6e3;
}
.subtractBtn:hover {
  cursor: pointer;
  color: orange;
  text-shadow: 1px 3px 3px #c6f7c6;
}
.addBtn:hover {
  cursor: pointer;
  color: green;
  text-shadow: 1px 3px 3px #c6f7c6;
}
#suggestions {
  position: relative;
  border: 1px solid #ccc;
  background: white;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1;
  min-width: 300px;
  margin-top: -4px;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#suggestions li {
  padding: 8px;
  cursor: pointer;
}
#suggestions li:hover {
  background-color: #f0f0f0;
}
#suggestions2 {
  position: relative;
  border: 1px solid #ccc;
  background: white;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1;
  min-width: 300px;
  margin-top: -4px;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#suggestions2 li {
  padding: 8px;
  cursor: pointer;
}
#suggestions2 li:hover {
  background-color: #f0f0f0;
}
.summaryDiv {
  display: flex;
  /* flex: 1 0 200px; */
  width: 35%;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-end;
  margin: 13% 0% 13% 10%;
  border-radius: 10px;
  box-shadow: 4px 3px 2px 0px #f0f4ee;
  background: #a4ffa4;
  color: black;
  font-family: monospace;
  font-size: xx-large;
  border: 1px solid #e6ede3;
  /* float: right; */
  padding: 0px 10px 0px 0px;
}
@media (max-width: 600px) {
  .summaryDiv {
    margin: 0% 0% 0% 0%;
    flex: 1 0 100%;
    font-size: x-large;
    height: 2em;
    background: #d8ffd8;
  }
}
.cartTable {
  width: 60%;
  flex: 5 0 0px;
  box-sizing: border-box;
  /* align-items: center; */
  justify-content: flex-end;
  display: flex;
}
.cartCheckoutPage {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
.mealScheduleDiv {
  display: flex;
  flex-flow: column;
}
.scheduleDayRow {
  justify-content: space-between;
  display: flex;
}
.optionYes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.optionToday {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.optionNo {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.scheduleHourSelect {
  width: auto;
}
.scheduleHourSelect:focus {
  width: auto;
}
.scheduleDay {
  baseline-shift: baseline;
  align-self: center;
  width: 94px;
}
.scheduleDayCheck {
  align-self: center;
}
.shceduleHourSpan {
  width: 145px;
  align-items: center;
  justify-content: end;
  justify-items: center;
  display: flex;
}
.checkBoxSpan {
  height: auto;
  margin: auto;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.ingredientsDiv {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  place-items: baseline;
  padding: 10px 0px 10px 0px;
  background: #f1faf1;
  border: 1px solid #e5ede2;
  border-radius: 5px;
}
.ingredientsContainer {
  display: flex;
  flex-flow: wrap;
  align-content: space-between;
  padding: 5px;
  justify-content: space-evenly;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
}
.ingredientsContainer > span {
  background-color: #FF9800;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid #FF9800;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-right: 6px;
  box-shadow: 1px 1px 3px 1px #e3f6e3;
  margin-top: 10px;
}
.closeBtn {
  margin-left: 10px;
  margin-top: -11px;
  position: relative;
  position: absolute;
  color: white;
  border: 1px solid red;
  border-radius: 10px;
  background-color: red;
  width: 10px;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: 1px 0 3px 1px #316012;
}
.closeBtn:hover {
  cursor: pointer;
}
.userHomeDiv {
  box-sizing: border-box;
  margin: auto;
  display: flex;
  flex-flow: column;
  width: 70%;
}
.mealAvailabilitySchedule {
  display: flex;
  gap: 0.5em;
  justify-content: space-evenly;
  place-items: baseline;
  padding: 10px 10px 10px 10px;
  background: #f1faf1;
  border: 1px solid #e5ede2;
  border-radius: 5px;
  align-items: center;
}
.ingredientsForm {
  display: flex;
  flex-flow: column;
}
.ingredientsFormContainer {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  border: 1px solid #e9f2e7;
  margin: auto;
  margin-top: 10px;
  padding: 10px;
  border-radius: 20px;
  background: #f8f1ed1c;
  box-shadow: 1px 2px 4px 0px #dcf3d8;
}
.ingredientFormField {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
}
.highlighted {
  color: orangered;
  background: yellow;
}
.quarter {
  width: 30%;
}
.mealAvailabilityScheduleTitle {
  display: flex;
  justify-items: baseline;
  justify-content: center;
  align-items: center;
}
.ingredientFormLabel {
  display: flex;
  justify-items: baseline;
  align-items: center;
  width: 61%;
}
.mealLocationDiv {
  display: flex;
  gap: 0.5em;
  justify-content: space-evenly;
  place-items: baseline;
  padding: 10px 10px 10px 10px;
  background: #f1faf1;
  border: 1px solid #e5ede2;
  border-radius: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.mealPhotosDiv {
  display: flex;
  gap: 0.5em;
  justify-content: space-evenly;
  place-items: baseline;
  padding: 10px 10px 10px 10px;
  background: #f1faf1;
  border: 1px solid #e5ede2;
  border-radius: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.uploadedImgPreviewDiv {
  border: 10px solid #fbfffb;
  margin: 4px;
  border-radius: 5px;
  box-shadow: 1px 1px 6px 3px #26672633;
  padding: 1px;
}
.uploadedImgPreviewDiv > img {
  width: 300px;
  border: 1px solid #d6deda;
  background: white;
}
.photoPreviewContainer {
  display: flex;
  width: 100%;
  flex-flow: column;
  align-items: center;
}
.mealPhotoUploadContainer {
  width: 100%;
}
.photoUploadForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}
.statusDiv {
  width: auto;
  border: 1px solid #badcc9;
  align-items: center;
  text-align: center;
  background: #ffffe8;
  border-radius: 5px;
  padding: 5px;
  margin: auto;
  box-sizing: border-box;
  box-shadow: 1px 1px 1px 1px #8ca89e26;
}
.closeBtn2 {
  margin-left: 5px;
  margin-top: -13px;
  position: relative;
  position: absolute;
  color: white;
  border: 1px solid red;
  border-radius: 10px;
  background-color: red;
  width: 17px;
  text-align: center;
  font-size: 1rem;
  box-shadow: 1px 0 3px 1px #316012;
  justify-content: center;
  justify-items: center;
  height: 17px;
}
.closeBtn2:hover {
  cursor: pointer;
}
.uploadBtn {
  display: flex;
  border: 1px solid #404340;
  padding: 5px;
  border-radius: 5px;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  box-shadow: 1px 1px 2px 0px #6ec16e;
  background: #cbf5cf;
  color: #0f0f0f;
  text-shadow: 0 0 white;
  font-weight: 400;
  font-size: 1.3em;
}
@media (max-width: 600px) {
  .userHomeDiv {
    width: 100%;
    box-sizing: border-box;
  }
  .mealAvailabilitySchedule {
    display: flex;
    gap: 0.5em;
    flex-flow: column;
    align-items: center;
  }
  .quarter {
    width: 100%;
  }
  .mealLocationDiv {
    flex-flow: column;
    align-items: center;
  }
  .mealPhotosDiv {
    display: flex;
    gap: 0.5em;
    justify-content: space-evenly;
    place-items: baseline;
    padding: 10px 10px 10px 10px;
    background: #f1faf1;
    border: 1px solid #e5ede2;
    border-radius: 5px;
    align-items: center;
    flex-wrap: wrap;
  }
}
