#recipesDiv {
  display: flex;
  height: 100%;
  width: 100%;
}

/* LEFT PANEL */
.recipesHeader {
  padding: 40px;
  border-right: 1px solid #1A3636;
  width: 350px;
}
.recipesTitle {
  margin-bottom: 20px;
}


/* ADD RECIPE */
.addRecipeButtonDiv {
  width: 100%;
  height: 5vh;
}
.addRecipeButtonDiv h4 {
  color: black !important;
}
.addRecipeButton {

}

/* BODY */
.myRecipes {
  height: fit-content;
}
.myRecipesDiv {
  overflow: auto;
  width: 100%;
  padding: 40px;
}

.recipesDiv {
  width: 100%;
}
.recipesDivHeader {
  display: flex;
  gap: 20px;
  align-items: center;
}
.recipesDivHeader img {
  height: 30px;
}
.recipesDivBody {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 15px;
  overflow: auto;
  width: 100%;
}

.recipe {
  margin: 0.6%;
}
.cultureRecipeIngredient img {
  margin-right: 15px;
}

/* FILTER BY TYPE */
.recipesFilterTypeDiv {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipesFilterType {
  display: flex;
  align-items: center;
}
.recipesFilterTypeDiv p {
  margin-bottom: 5px;
}
.recipesFilterType img {
  height: 20px;
}
.recipesFilterTypeDiv label {
  display: flex;
  align-items: center;
  gap: 10px;
}



.cultureRecipes {
  margin-bottom: 20px;
  width: 100%;
}


/* SINGLE RECIPE */
.recipe {
  margin-top: 10px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #677D6A;
  cursor: pointer;
}

/* RECIPE HEADER */
.cultureRecipeHeader {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.cultureRecipeHeaderTitle {
  /* max-width: 80%; */
}
.cultureRecipeHeader h3, .cultureRecipeHeader p {
  display: inline-block;
}
.cultureRecipeHeader p {
}
.sharedRecipeText {
  color: #ffc260;
}

.privateRecipeText {
  color: #1A3636;
}

/* RECIPE PARAMS */
.cultureRecipeHeaderParams {
  padding-left: 10px;
}
.cultureRecipeHeaderParams img {
  transform: scaleY(-1);
  height: 15px;
}

/* RECIPE MENU  */
.recipeMenuDiv {
  /* display: none; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.recipeMenu {
  /* width: 100%; */
  display: flex;
}
.cultureRecipeUsedCount {
  font-size: 15px;
  color: #D3D3D3;
  margin-right: 10px;
}
.recipeMenuLink {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.recipeMenuLink p {
  color: #D3D3D3;
  text-decoration: underline #D3D3D3;
}
.recipeMenuLink:hover {
  color: #ffc260 !important;
  text-decoration: underline #ffc260;
}
.recipeMenuLink img {
  height: 15px;
}



/* RECIPE INGREDIENTS */
.cultureRecipeIngredientsDiv {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cultureRecipeIngredient {
  height: 5vh;
  display: flex;
  align-items: center;
}
.cultureRecipeIngredient img {
  height: 80%;
  margin-right: 30px;
}
.cultureRecipe p {
}
