/* ############### Begin: Muhammad Yousaf id-395 started here ################ */
/* ############### Dashboard-Menu-Page ################ */
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Menu progressbar start here  */
.menu-step-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.menu-progress-bar-line {
    position: absolute;
    top: 25%;
    left: 3%;
    right: 2%;
    height: 15px;
    border-radius: 10px;
    background-color:var(--light-color1);
    z-index: 0;
}

.menu-progress-bar-line-active {
    background-color: var(--primary-color1);
    /* Red active line */
    height: 100%;
    position: absolute;
    transition: width 0.4s ease;
    z-index: 1;
}

.menu-step {
    position: relative;
    z-index: 2;
    background-color: var(--quartenary-color1);
    border: 3px solid var(--light-color1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color1);
    display: none;
    /* Hide steps initially */
}

.menu-step.active,
.step.current {
    display: block;
    /* Show active/current steps */
}

.menu-step.active {
    background-color: var(--primary-color1);
    /* Active step filled */
    color: var(--quartenary-color1);
    border: 3px solid var(--primary-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-step.current {
    background-color: var(--quartenary-color1);
    border: 3px solid var(--primary-color1);
    /* Border for current step */
    color: var(--primary-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-step-text {
    text-align: center;
    margin-top: 10px;
    /* Adjusted for better spacing */
    color: var(--dark-color1);
    display: none;
    /* Hide step text initially */
}

.menu-step-text.active {
    display: block;
    /* Show step text for active and current steps */
    color: var(--primary-color1);
    font-weight: bold;
}

.menu-form-step {
    display: none;
}

.menu-form-step.active {
    display: block;
}

/* Menu progressbar end here  */
.chef-dashboard-menu {
    font-family: "Open Sans", arial, verdana;
    font-style: italic;
}


.dashboard-menu-items {
    white-space: nowrap;
}

.dashboard-button {
    width: 100px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--primary-color1);
    color: var(--primary-color1);

}

.dashboard-button:hover {
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);

}

.form-control:focus {
    border: 1px solid var(--primary-color1);
    box-shadow: 0 0 0 2px var(--primary-color1);
}
.dashboard-menu-form {
    border: 1px solid var(--primary-color1);
}

.dashboard-food-menu {
    border: 1px solid var(--primary-color1);
    border-radius: 14px;
}

.dashboard-food-edit {
    fill: var(--primary-color1);
}



.dashbord-trash-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.dashboard-trash-btn {
    width: 85px;
}

.dashboard-trash-btn-yes {
    width: 85px;
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);
}

.dashboard-trash-btn-yes:hover {
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);
}

.dashboard-menu-item-next {
    width: 135px;
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);
    border-radius: 10px;
}

.dashboard-menu-item-next:hover {
    width: 135px;
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);
    border-radius: 10px;
}

.dashboard-edit-btn-cancle {
    border: 1px solid var(--primary-color1);
    border-radius: 10px;
    width: 100px;
}

.dashboard-edit-btn-cancle:hover {
    background-color: var(--primary-color1);
    color: var(--quartenary-color1);
}


@media(min-width:320px) and (max-width:767px) {
    .chef-dashboard-menu {
        /* width: 100%; */
        display: flex;
        flex-direction: column;
    }

    .dashboard-btn {
        width: 100px;
    }

    .dashboard-button {
        width: 90px;
    }

    .container {
        max-width: 100%;
    }
}
    @media (max-width:320px){
        .dashboard-menu-item-next, .dashboard-edit-btn-cancle{
            font-size: 14px;
        }
    }





    /* ############### End: Muhammad Yousaf id-395 ended here ################ */