body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

input, select, textarea{
    font-size: 16px;
}


.show-all-status {
    border: none;
    font-size: 24px;
    line-height: 16px;
    width: 20px;
    padding: 0;
}

.show-all-status.checked {
    background: lightblue;
}

.menu-container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 100vh; /* Full height */
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-top: 1px solid lightgray;
    box-shadow: 0px 0px 10px -7px;
    z-index: 10;
    background: white;
}

.menu-button {
    padding: 10px 14px;
    border-bottom: 6px solid;
    font-size: 16px;
    margin: 10px 2px;
    border: none;
    border-radius: 10px;
    color: #007BFF;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-button.active {
    background-color: #007BFF;
    color: white;
}

.menu-button:hover {
    background-color: #0056b3;
    color: white;
}

@media (min-width: 600px) {
    .menu-container {
        flex-direction: row; /* Change to horizontal on larger screens */
    }
}


.loader-area{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: none;
    z-index: 9;
}

.fake-loader{
    background-image: url(https://cdn.pixabay.com/animation/2023/05/02/04/29/04-29-06-428_512.gif);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8%;
}

li.search-bar input {
    width: 95%;
    padding: 4px 2%;
    line-height: 24px;
    border: none;
    font-size: 16px;
}

/*  foods  */
.foods-area{
    display: none;
}

.foods-area ul {
    list-style: none;
    padding: 20px 20px 60px 20px;
    margin: 0;
    background: #d3d3d37d;
}

.foods-area ul li {
    padding: 5px 8px 5px 8px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 8px;
    border: 1px solid #2f4f4f5e;
    position: relative;
    min-height: 52px;
}

.foods-area ul li.search-bar {
    background-image: url(https://cdn3.iconfinder.com/data/icons/feather-5/24/search-128.png);
    background-size: auto 75%;
    background-position: 8px;
    min-height: 32px;
    background-repeat: no-repeat;
    padding-left: 50px;
}

.food-header{
    position: relative;
    border-bottom: 1px solid lightgray;
}

.food-title {
    font-weight: bold;
}

.food-comments {
    font-size: 16px;
    font-style: italic;
}

.food-recipes{
    position: relative;
}

.food-recipes table {
    width: 100%;
}

.edit-food-recipe {
    width: 50px;
    background-image: url(https://c8.alamy.com/comp/2DH2W1H/restaurant-food-icon-concept-logo-vector-design-concept-2DH2W1H.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 153%;
    height: 50px;
    float: right;
}

.food-ingredients {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 59px;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 10px;
    box-shadow: 0px 0px 10px -8px;
    background: whitesmoke;
    z-index: 20;
    overflow-y: scroll;
    display: none;
}

ol {
    list-style: circle;
    padding: 10px;
    margin: 0px;
}

ol li {
    border-bottom: 1px solid lightgray;
    padding: 4px 0px;
}

.food-ingredients table {
    width: 100%;
}

.food-ingredients table td {
    width: 100%;
}

.Quantity input {
    width: 48px;
}

.foods-area .title {
    font-size: 16px;
    font-weight: bold;
    padding: 0px 0px 5px 0px;
}

.foods-area .calories {
    padding: 0px 0px 0px 20px;
    background-image: url(https://simg.nicepng.com/png/small/133-1331819_cultista-burn-calories-icon.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto 110%;
    font-size: 16px;
    float: left;
}

.foods-area .cost {
    font-size: 18px;
    padding: 0px 0px 0px 20px;
    float: right;
    margin-right: 64px;
    font-size: 16px;
    font-style: italic;
}

.foods-area .comments {
    padding: 0px 0px 0px 0px;
    font-size: 16px;
    clear: both;
}

.edit-food {
    background-image: url(https://www.kindpng.com/picc/m/710-7101685_can-you-edit-a-png-file-android-edit.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 16px;
    height: 16px;
    z-index: 2;
}

.add-food{
    background-image: url(https://icons.veryicon.com/png/o/miscellaneous/night-hunting/android-add-circle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    left: 0px;
    width: 64px;
    height: 64px;
    bottom: 52px;
    z-index: 20;
}

.add-food-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.add-food-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.add-food-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

button#Savefood {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

button#Cancelfood {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 0px;
    right: 50%;
    font-size: 20px;
    background-color: #85858557;
    border: 1px solid lightslategrey;
}

input.required{
    border: 2px solid red;
}

.food-response{
    position: absolute;
    bottom: 62px;
    left: 0px;
    right: 0px;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: none;
    z-index: 1;
}

.food-response.success{
    background-color: lightgreen;
}

.food-response.error{
    background-color: lightcoral;
}


.edit-food-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.edit-food-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.edit-food-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

.edit-food-form select{
    width: 94%;
    margin: 1% 3%;
    padding: 10px 2%;
}

button#Updatefood {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

.add-recipe-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 20;
    padding: 60px 20px;
    display: none;
}

.add-recipe-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.add-recipe-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

button#Saverecipe {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

.edit-recipe-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 20;
    padding: 60px 20px;
    display: none;
}

.edit-recipe-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.edit-recipe-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

button#Updaterecipe {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

button#Cancelrecipe {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 0px;
    right: 50%;
    font-size: 20px;
    background-color: #85858557;
    border: 1px solid lightslategrey;
}

button#Deleterecipe {
    position: fixed;
    bottom: 256px;
    height: 64px;
    left: 30%;
    right: 30%;
    font-size: 20px;
    background-color: #f5282857;
    border: 1px solid lightslategrey;
}

.close-food-ingredients {
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(https://static-00.iconduck.com/assets.00/close-icon-2048x2048-8uto7ebt.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
    right: 0px;
}

.recipe-response{
    position: absolute;
    bottom: 132px;
    left: 0px;
    right: 0px;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: none;
    z-index: 1;
}

#recipes-results {
    position: absolute;
    background: white;
    left: 20px;
    top: 56px;
    right: 23px;
    border: 1px solid lightgray;
    box-shadow: 0px 5px 10px -4px;
    border-radius: 0px 0px 6px 6px;
    padding: 2px;
}

.result-item {
    border-bottom: 1px solid lightgray;
    padding: 10px;
}


/*  measures  */
.measures-area{
    display: none;
}

.measures-area ul {
    list-style: none;
    padding: 20px 20px 60px 20px;;
    margin: 0;
    background: #d3d3d37d;
}

.measures-area li {
    padding: 10px 10px 10px 48px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 8px;
    border: 1px solid #2f4f4f5e;
    background-image: url(https://t3.ftcdn.net/jpg/02/43/63/40/360_F_243634021_KclR8wR2OA8jtYZOUwucB32ShFoPEhqO.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    min-height: 36px;
}

.measures-area li.search-bar {
    background-image: url(https://cdn3.iconfinder.com/data/icons/feather-5/24/search-128.png);
    background-size: auto 75%;
    background-position: 8px;
    min-height: 20px;
}

.measures-area .title {
    font-size: 16px;
    font-weight: bold;
    padding: 0px 0px 5px 0px;
}

.measures-area .comments {
    padding: 0px 0px 0px 0px;
    font-size: 16px;
}

.edit-measure {
    background-image: url(https://www.kindpng.com/picc/m/710-7101685_can-you-edit-a-png-file-android-edit.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    border-left: 1px solid lightgray;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 64px;
    bottom: 0px;
    z-index: 2;
}

.add-measure{
    background-image: url(https://icons.veryicon.com/png/o/miscellaneous/night-hunting/android-add-circle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    left: 0px;
    width: 64px;
    height: 64px;
    bottom: 52px;
    z-index: 20;
}

.add-measure-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.add-measure-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.add-measure-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

button#Savemeasure{
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

button#Cancelmeasure {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 0px;
    right: 50%;
    font-size: 20px;
    background-color: #85858557;
    border: 1px solid lightslategrey;
}

input.required{
    border: 2px solid red;
}

.measure-response{
    position: absolute;
    bottom: 62px;
    left: 0px;
    right: 0px;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: none;
    z-index: 1;
}

.measure-response.success{
    background-color: lightgreen;
}

.measure-response.error{
    background-color: lightcoral;
}

.edit-measure-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.edit-measure-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.edit-measure-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

.edit-measure-form select{
    width: 94%;
    margin: 1% 3%;
    padding: 10px 2%;
}

button#Updatemeasure {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}


/*  ingredients  */
.ingredients-area{
    display: none;
}

.ingredients-area ul {
    list-style: none;
    padding: 20px 20px 60px 20px;;
    margin: 0;
    background: #d3d3d37d;
}

.ingredients-area li {
    padding: 10px 10px 10px 48px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 8px;
    border: 1px solid #2f4f4f5e;
    background-image: url(https://media.istockphoto.com/id/1015874904/vector/mixing-ingredients-line-icon.jpg?s=612x612&w=0&k=20&c=CvtWwTjip4KO7lpdfo7mZs9dtWo-750b-KR2gis4T9I=);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 50px;
    position: relative;
    min-height: 36px;
}

.ingredients-area li.search-bar {
    background-image: url(https://cdn3.iconfinder.com/data/icons/feather-5/24/search-128.png);
    background-size: auto 75%;
    background-position: 8px;
    min-height: 20px;
}

.ingredients-area .title {
    font-size: 16px;
    font-weight: bold;
    padding: 0px 0px 0px 0px;
}

.ingredients-area .calories {
    padding: 0px 0px 0px 20px;
    background-image: url(https://simg.nicepng.com/png/small/133-1331819_cultista-burn-calories-icon.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto 110%;
    font-size: 16px;
    float: left;
    width: 64px;
}

.ingredients-area .cost {
    padding: 0px 0px 0px 20px;
    font-size: 16px;
    float: left;
    width: 64px;
}

.ingredients-area .measure {
    float: right;
    margin-right: 59px;
    font-size: 16px;
    font-style: italic;
}

.ingredients-area .comments {
    padding: 0px 0px 0px 0px;
    font-size: 16px;
}

.edit-ingredient {
    background-image: url(https://www.kindpng.com/picc/m/710-7101685_can-you-edit-a-png-file-android-edit.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    border-left: 1px solid lightgray;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 64px;
    bottom: 0px;
    z-index: 2;
}

.add-ingredient{
    background-image: url(https://icons.veryicon.com/png/o/miscellaneous/night-hunting/android-add-circle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    left: 0px;
    width: 64px;
    height: 64px;
    bottom: 52px;
    z-index: 20;
}

.add-ingredient-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.add-ingredient-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.add-ingredient-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

.add-ingredient-form select{
    width: 94%;
    margin: 1% 3%;
    padding: 10px 2%;
}

button#Saveingredient{
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}

button#Cancelingredient {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 0px;
    right: 50%;
    font-size: 20px;
    background-color: #85858557;
    border: 1px solid lightslategrey;
}

input.required{
    border: 2px solid red;
}

.ingredient-response{
    position: absolute;
    bottom: 62px;
    left: 0px;
    right: 0px;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: none;
    z-index: 1;
}

.ingredient-response.success{
    background-color: lightgreen;
}

.ingredient-response.error{
    background-color: lightcoral;
}

.edit-ingredient-form{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: lightblue;
    z-index: 9;
    padding: 60px 20px;
    display: none;
}

.edit-ingredient-form input{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
}

.edit-ingredient-form textarea{
    padding: 16px 3%;
    width: 88%;
    margin: 1% 3%;
    min-height: 200px;
}

.edit-ingredient-form select{
    width: 94%;
    margin: 1% 3%;
    padding: 10px 2%;
}

button#Updateingredient {
    position: fixed;
    bottom: 67px;
    height: 64px;
    left: 50%;
    right: 0px;
    font-size: 20px;
    background-color: #47a74757;
    border: 1px solid lightslategrey;
}