﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Reset */
a {
    text-decoration: none;
    color: inherit;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.ml-0 {
    margin-left: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-25 {
    margin-bottom: 25px;
}
.ml-15 {
    margin-left: 15px
}
.ml-20 {
    margin-left: 20px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}

.pb-0 {
    padding-bottom: 0px !important;
}
.pb15 {
    padding-bottom: 15px !important;
}
.text-right {
    text-align: right !important;
}
.w-full{
    width:100%;
}
.main-btn {
    padding: 15px 25px;
    background: #1193d3;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 200px;
    text-align: center;
}

    .main-btn:hover {
        background: #001d4d;
    }

.main-btn-delete {
    padding: 15px 25px;
    background: #e3342f;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 200px;
    text-align: center;
}

.delete-btn:hover {
    background: #cc1f1a;
}
.secondary-btn,
.table-responsive.BuildRecipe-tbl td .btn-primary {
    background-color: transparent;
    border: 1px solid #475155;
    outline: 0;
    padding: 15px 25px;
    border-radius: 8px;
    color: #475155;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 200px;
    text-align: center;
    display: inline-block;
    margin-left: 15px
}

    .secondary-btn:hover,
    .table-responsive.BuildRecipe-tbl td .btn-primary:hover {
        background-color: #475155;
        border-color: #475155;
        color: #fff;
    }


input[readonly],
textarea[readonly],
select[readonly],
.readonly-input {
    border: 1px solid #a9a9a9 !important;
    background-color: #e6e7ef !important;
    cursor: text !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.field-validation-error,
.text-danger.validation-summary-errors {
    color: red;
    font-size: 12px;
    font-weight: 500;
}

    .text-danger.validation-summary-errors ul {
        margin-left: 15px;
        margin-bottom: 15px;
    }



body.tv-screen-body {
    display: flex;
    min-height: 100vh;
    background: #eeeff8;
}

/* Left Panel (Fixed) */
.sidebar {
    width: 350px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 45px 30px;
    flex-shrink: 0;
    color: #172b4d !important;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    /* position: fixed;
    min-height: 100vh; */
}
.main-container .left-panel {
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 45px 30px;
    flex-shrink: 0;
    color: #172b4d !important;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
    .main-container .left-panel::-webkit-scrollbar {
        display: none;
    }
    .sidebar h1 {
        font-size: 35px;
        font-weight: 700;
        margin: 30px 0 0 0;
        color: #0a2a56;
    }

    .sidebar p {
        font-size: 19px;
        font-weight: 600;
        font-style: italic;
        margin: 60px 0 0 0;
        color: #0a2a56;
    }

    .sidebar .main-logo {
        width: 140px !important;
    }

    .sidebar .wr-header .date-time {
        display: flex;
        align-items: flex-start;
        font-size: 30px;
        font-weight: 600;
        gap: 20px;
        padding-top: 40px;
    }

        .sidebar .wr-header .date-time img {
            width: 35px;
            align-items: center;
        }

    .sidebar .wr-footer .footer-logo {
        width: 220px;
    }

    .sidebar .wr-footer span {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #0a2a56;
        margin-bottom: 30px;
    }

/* Middle + Right Panels */
.content {
    margin: 0px 60px 0px 60px;
    display: flex;
    flex: 1;
    gap: 40px;
    /* padding-left: 450px; */
}

.panel {
    flex: 1;
}

    .panel .panel-card {
        display: flex;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        padding: 15px 15px 0 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
        width: 100%;
    }

        .panel .panel-card h2 {
            margin: 0px;
            padding: 0 15px 15px;
            color: #001d4d;
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            width: 100%;
        }

        .panel .panel-card p {
            margin: 0px;
            padding: 0 15px 15px;
            color: #455571;
            font-size: 33px;
            font-weight: 400;
        }

        .panel .panel-card .two-column {
            display: flex;
            gap: 15px;
            width: 100%;
        }

            .panel .panel-card .two-column div {
                width: 50%;
            }

                .panel .panel-card .two-column div p {
                    display: block;
                    font-size: 15px;
                    color: #9d9d9d;
                    padding: 0 0 10px 0;
                    margin: 0;
                }

    .panel img {
        width: 100%;
        height: 200px;
        border-radius: 14px;
        object-fit: cover;
    }

h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a2a56;
}

.tv-screen-body .menu-item {
    display: flex;
}
.menu-item {
    margin-bottom: 5px;
    width: 100%;
    /* padding: 10px; */
    border-radius: 4px;
}
    .menu-item button:hover,
    .menu-item.open button,
    .menu-item.active button {
        background-color: #eeeff8;
    }

.label {
    font-style: italic;
    color: #001d4d;
    font-size: 22px;
    font-weight: 600;
    width: 22%;
    padding: 0 10px 0 15px;
}

.value {
    margin: 0px;
    padding: 0 15px;
    color: #707070;
    font-size: 31px;
    font-weight: 400;
    width: 78%;
}


.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 equal columns */
    /* height: 100vh; */
    /* Full viewport height */
    padding: 40px 0;
    gap: 25px;
}

.col1 {
    display: grid;
    grid-template-rows: 1.9fr 6.2fr 1.9fr;
    /* padding-right: 15px; */
}

.col2 {
    display: grid;
    grid-template-rows: 8.1fr 1.9fr;
    /* Relative heights (8 : 2) */
    /* padding-left: 15px; */
}


.col1 .panel-card:nth-child(2) {
    margin: 20px 0;
    align-content: flex-start;
}


.col2 .panel-card:nth-child(1) {
    margin: 0 0 20px 0;
    align-content: flex-start;
}

.lgscreen-show,
.tab-show,
.mobile-show {
    display: none;
}


@media screen and (max-width: 1600px), screen and (max-height: 750px) {
    .tv-screen-body .container {
        zoom: 0.8;
    }

    .tv-screen-body .sidebar .wr-header {
        zoom: 0.8;
    }

    .tv-screen-body .sidebar {
        width: 320px;
    }
}

@media screen and (max-height: 630px) {
    .tv-screen-body .container,
    .tv-screen-body .sidebar .wr-header {
        zoom: 0.7;
    }
}


@media (max-width: 991px) {
    .sidebar {
        width: 100% !important;
        padding: 15px 15px;
    }

    .wr-header {
        width: 100%;
    }

        .wr-header .mobile-flex {
            display: flex !important;
            width: 100%;
            justify-content: space-between;
            margin-bottom: 25px;
        }

    .content {
        flex-wrap: wrap;
        margin: 0 15px !important;
    }

    .menu-item {
        flex-direction: column;
    }

    body.tv-screen-body {
        display: block;
    }

    .tab-show {
        display: block !important;
    }

    .tab-hidden {
        display: none !important;
    }

    .sidebar h1 {
        font-size: 20px;
        margin: 0;
    }

    .date-time br {
        display: none;
    }

    .sidebar .wr-header .date-time img {
        width: 30px !important;
    }

    .date-time {
        font-size: 16px !important;
        align-items: center !important;
        gap: 15px !important;
        padding-top: 0px !important;
        padding-bottom: 8px !important;
    }

    .container {
        display: block !important;
        height: 100% !important;
        padding: 20px 0 40px 0 !important;
        gap: 25px;
    }

    .wr-footer.tab-show {
        background-color: #fff;
        text-align: center;
        padding: 30px 15px;
    }

        .wr-footer.tab-show span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #0a2a56;
            margin-bottom: 30px;
        }

        .wr-footer.tab-show .footer-logo {
            width: 220px;
        }

    .panel .panel-card h2 {
        font-size: 22px;
        padding: 0 15px 5px;
    }

    .panel .panel-card p,
    .value {
        font-size: 28px;
    }

    .panel .panel-card {
        padding: 10px 10px 0 10px;
    }

    .col2 {
        margin-top: 20px;
    }

    .right-panel {
        padding: 30px !important;
        margin-left: 270px !important;
    }

    .main-container .left-panel {
        width: 270px !important;
    }
}
@media (max-width: 1200px) {
    .lgscreen-show {
        display: block !important;
    }
    .lgscreen-hide {
        display: none !important;
    }
}











/* Header */
.site-header {
    height: 80px;
    background: #001d4d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: grid;
    place-items: center;
}

/* Profile */
.profile {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
}

.profile-email {
    font-size: 12px;
    color: #64748b;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

    .avatar .avatar-text {
        width: 45px;
        height: 45px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        background: #fff;
        color: #001d4d;
        font-weight: 600;
    }

    .avatar img {
        padding: 8px;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
    }

/* Drawer */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1001;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 380px;
    background: #ffffff;
    transform: translateX(100%);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

    .drawer.show {
        transform: translateX(0);
    }

.drawer-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    overflow: auto;
}

    .drawer-nav a {
        padding: 10px;
    }

        .drawer-nav a:hover {
            background: #f3f4f6;
        }

.drawer-header {
    width: 100%;
    padding: 20px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
}

.close-btn {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
}

/* Responsive */
@media (max-width:768px) {

    .profile,
    .left-panel,
    .brand-sub,
    .toggle-btn,
    .header-notification {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .right-panel,
    .main-container .right-panel.left-collapsed {
        margin-left: 0px !important;
    }

    .mobile-show {
        display: block !important;
    }

    .main-container {
        min-height: calc(100vh - 80px - 55px) !important;
        height: auto !important;
    }

    .right-panel {
        padding: 20px !important;
    }
    .mobile-footer p {
        padding: 0 !important;
    }
}

@media (max-width:576px) {
    .drawer {
        width: 100% !important;
        max-width: 100% !important;
    }
}



/* Main container (below header) */
.main-container {
    display: flex;
    height: calc(100vh - 80px);
    /* full height minus header */
    margin-top: 80px;
    /* push below header */
}

/* Left panel */
.left-panel {
    background: #ecf0f1;
    position: fixed;
    top: 80px;
    /* below header */
    bottom: 0;
    left: 0;
    padding: 30px 20px !important;
    overflow-y: auto;
}

/* Right panel */
.right-panel {
    margin-left: 300px;
    /* leave space for left panel */
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background-color: #eeeff8;
    transition: margin-left 0.3s ease;
}
    .right-panel.left-collapsed {
        margin-left: 80px !important;
    }

.left-panel div {
    width: 100%;
}

.left-panel h1 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 10px;
}

.user-menu {
    position: relative;
}

.user-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

.dropdown-user {
    display: none;
    position: absolute;
    right: 0;
    top: 70px;
    background: #fff;
    min-width: 180px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    overflow: hidden;
}

    .dropdown-user a {
        display: block;
        padding: 12px 20px;
        color: #172b4d;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        font-size: 14px;
        font-weight: 500;
    }

        .dropdown-user a:hover {
            background: #f1f1f1;
        }

.left-panel .main-logo {
    margin: 20px 0 0 10px;
}






.left-menu-sidebar {
    width: 100%;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}


.menu-btn {
    width: 100%;
    background: none;
    border: none;
    color: #172b4d;
    text-align: left;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

    .menu-btn div img {
        width: 20px;
        max-height: 20px;
        margin-right: 8px;
    }

.arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

    .arrow img {
        width: 16px;
    }

.submenu {
    list-style: none;
    /* padding-left: 20px; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 3px;
}

    .submenu li a {
        display: block;
        padding: 6px 16px 6px 25px;
        color: #172b4d;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border-left: 2px solid #e2ecfb;
        margin-left: 20px;
    }

        .submenu li a:hover {
            color: #172b4d;
        }

/* Expanded state */
.menu-item.open .submenu,
.menu-item.active .submenu {
    max-height: 200px;
}

.menu-item.open .arrow,
.menu-item.active .arrow {
    transform: rotate(180deg);
    /* flips  upward */
}


.left-menu-sidebar button div {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.mobile-footer {
    width: 100%;
    text-align: center;
    padding: 15px;
}

    .mobile-footer p,
    .main-container .left-panel p {
        color: #172b4d;
        font-size: 14px;
        font-weight: 500;
        padding: 5px 0 0 0;
    }






.tiles-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns default */
    gap: 16px;
    margin: 0 auto;
}

.tile {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(8, 20, 40, 0.06);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .tile:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(8, 20, 40, 0.09);
    }

.tile-inner {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 120px;
}

.icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    margin-bottom: 2px;
}

.tile-inner h3 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: #172b4d;
}

.tile-inner p {
    font-size: 14px;
    color: #172b4d;
    margin-top: auto;
    padding: 0;
}

/* =< 768px: show 2 columns */
@media (max-width: 991px) {
    .tiles-section,
    .login-panel .tiles-section {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Optionally: =< 480px: full width single column */
@media (max-width: 480px) {
    .tiles-section,
    .login-panel .tiles-section {
        grid-template-columns: 1fr !important;
    }
}






.wr-breadcrumb,
.BuildRecipe-grid h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a56;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .wr-breadcrumb div {
        display: flex;
        align-items: center;
    }

    .wr-breadcrumb a {
        display: flex;
        align-items: center;
    }

    .wr-breadcrumb img {
        height: 17px;
        margin-right: 12px;
    }

    .wr-breadcrumb p {
        font-size: 14px;
        padding: 2px 0 10px 20px;
    }

    .wr-breadcrumb .back-btn {
        background-color: transparent;
        border: 1px solid #707070;
        outline: 0;
        padding: 10px 20px;
        border-radius: 8px;
        color: #707070;
        font-size: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
        width: fit-content;
        margin-left: 20px;
        transition: transform 0.3s ease;
    }

        .wr-breadcrumb .back-btn:hover {
            background-color: #1193d3;
            border-color: #1193d3;
            color: #fff;
        }







.reports-search {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

    .reports-search .reports-search-left {
        width: 75%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .reports-search .reports-search-right {
        width: 25%;
        display: flex;
        gap: 10px;
    }

.dropdown {
    position: relative;
}

.dropdown-header {
    border: 1px solid #707070;
    border-radius: 8px;
    padding: 22px 40px 8px 14px;
    background: #eeeff8;
    cursor: pointer;
    position: relative;
}

.dropdown-label {
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 12px;
    color: #707070;
    pointer-events: none;
    font-weight: 500;
}

.dropdown-selected {
    font-size: 14px;
    font-weight: 600;
    color: #001d4d;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    max-width: 100%;
}

.dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-20%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow img {
    width: 13px;
}

/* Dropdown list */
.dropdown-list {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    position: absolute;
    width: 100%;
    max-height: 0;
    overflow: auto;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 99;
}

.dropdown.open .dropdown-list {
    max-height: 300px;
    opacity: 1;
}

.dropdown-list li {
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #1f2a44;
}

    .dropdown-list li:hover {
        background: #f1f3f9;
    }


.reports-search-right .generate-btn {
    background-color: #139bdc;
    border: 1px solid #139bdc;
    outline: 0;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .reports-search-right .generate-btn:hover {
        background-color: #001d4d;
        border: 1px solid #001d4d;
        color: #fff;
    }

.reports-search-left .export-btn,
.reports-search-right .export-btn {
    background-color: transparent;
    border: 1px solid #707070;
    outline: 0;
    padding: 14px 20px;
    border-radius: 8px;
    color: #707070;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .reports-search-left .export-btn:hover,
    .reports-search-right .export-btn:hover {
        background-color: #707070;
        color: #fff;
    }


.reports-grid-item {
    display: flex;
    display: flex;
    flex-wrap: wrap;
}

    .reports-grid-item div {
        box-sizing: border-box;
        padding: 10px 40px 15px 0;
        color: #707070;
        font-size: 16px;
        font-weight: 400;
    }

        .reports-grid-item div small {
            display: block;
        }

        .reports-grid-item div:nth-child(1) {
            flex: 0 0 40%;
        }

        .reports-grid-item div:nth-child(2),
        .reports-grid-item div:nth-child(3) {
            flex: 0 0 30%;
        }


@media (max-width: 1200px) {
    .reports-search {
        display: block !important
    }

        .reports-search .reports-search-left {
            width: 100% !important;
            margin-bottom: 15px;
        }
}

@media (max-width: 991px) {
    .reports-search .reports-search-left {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        width: 100% !important;
    }

    .reports-search .reports-search-right {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .reports-grid-item {
        padding: 0 0 20px 0 !important;
        font-size: 17px;
    }

        .reports-grid-item div {
            flex: 0 0 100% !important;
            padding: 0 0 3px 0 !important;
            font-size: 17px;
        }
}





.settings-search {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

    .custom-dropdown select,
    .custom-search input {
        width: 100%;
        padding: 15px 50px 15px 14px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 8px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        cursor: pointer;
        outline: none;
    }

    .custom-dropdown::after {
        content: "";
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-30%);
        pointer-events: none;
        background: url(../Images/dropdown-arrow.svg) no-repeat;
        transition: transform 0.3s ease;
        width: 13px;
        height: 13px;
    }

.custom-search {
    position: relative;
    display: inline-block;
}

    .custom-search input {
        padding: 15px 15px 15px 45px;
        cursor: auto;
    }

    .custom-search::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        background: url(../Images/search-ico.svg) no-repeat;
        transition: transform 0.3s ease;
        width: 16px;
        height: 16px;
    }

@media (max-width: 1200px) {
    .settings-search {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .settings-search {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}



.custom-responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

    .custom-responsive-table tr:hover {
        background-color: #f9f9f9;
    }

    .custom-responsive-table td {
        padding: 6px 15px;
        text-align: left;
        position: relative;
        font-size: 14px;
        font-weight: 600;
        color: #001d4d;
    }

    .custom-responsive-table th {
        font-size: 14px;
        font-weight: 500;
        color: #001d4d;
        padding: 10px 15px;
        text-align: left;
        position: relative;
    }

    .custom-responsive-table .checkbox {
        width: 18px;
        height: 18px;
    }

    .custom-responsive-table .Actions-container,
    .custom-responsive-table .Actions-container form {
        display: flex;
        justify-content: flex-end;
    }

    .custom-responsive-table .action-btn {
        padding: 7px 9px;
        margin: 2px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .custom-responsive-table .action-btn img {
            width: 14px;
            height: 14px;
        }

    .custom-responsive-table .edit {
        background-color: #1193d3;
    }

    .custom-responsive-table .view {
        background-color: #001d4d;
    }

    .custom-responsive-table .delete {
        background-color: #e3342f;
    }

/*  Responsive Mobile View */
@media (max-width: 976px) {

    .custom-responsive-table table,
    .custom-responsive-table thead,
    .custom-responsive-table tbody,
    .custom-responsive-table th,
    .custom-responsive-table td,
    .custom-responsive-table tr {
        display: block;
        width: 100%;
    }

    .custom-responsive-table thead {
        display: none;
        /* hide table header */
    }

    .custom-responsive-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background: #fafafa;
    }

    .custom-responsive-table td,
    .BuildRecipe-tbl .custom-responsive-table td {
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 10px 8px 10px !important;
    }

        .custom-responsive-table td::before {
            content: attr(data-label);
            font-weight: 600;
            font-size: 12px;
            flex: 1;
            text-align: left;
            position: absolute;
            top: 0px;
            color: #707070;
        }

        .custom-responsive-table td:last-child {
            justify-content: flex-start;
            flex-wrap: wrap;
        }
}
@media (max-width: 768px) {
    table.custom-responsive-table td.Actions-container {
        padding: 0 10px 10px 10px !important;
    }
}


    /* Hide the default checkbox */
    .custom-checkbox input[type="checkbox"] {
        display: none;
    }

    .custom-checkbox label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
    }

        /* The box */
        .custom-checkbox label::before {
            content: "";
            display: inline-block;
            width: 25px;
            height: 25px;
            border-radius: 4px;
            background: #b6c4cb;
        }

    /* Checked state */
    .custom-checkbox input[type="checkbox"]:checked + label::before {
        background-color: #1193d3;
        background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M6.173 12.727 2.1 8.654l1.414-1.414 2.659 2.659 6.313-6.313 1.414 1.414z'/></svg>");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 15px;
    }









    .menu-edit-create > form {
        display: contents;
    }

    .menu-edit-create {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

        .menu-edit-create .form-group {
            width: 100%;
        }

            .menu-edit-create .form-group .custom-dropdown {
                width: 100%;
                height: 50px;
            }

        .menu-edit-create .form-group {
            padding: 0 0 25px 0;
        }

            .menu-edit-create .form-group > label {
                width: 100%;
                font-size: 13px;
                font-weight: 600;
                color: #707070;
                padding: 0 0 4px 0;
                display: block;
            }

            .menu-edit-create .form-group > small {
                color: #707070;
            }

            .menu-edit-create .form-group input[type="text"],
            .menu-edit-create .form-group input[type="email"],
            .menu-edit-create .form-group input[type="number"],
            .menu-edit-create .form-group input[type="tel"],
            .menu-edit-create .form-group input[type="password"],
            .menu-edit-create .form-group input[type="file"],
            .input-container {
                width: 100%;
                padding: 15px 50px 15px 14px;
                font-size: 14px;
                font-weight: 600;
                border: 1px solid #707070;
                border-radius: 8px;
                background-color: #eeeff8;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #1f2a44;
                outline: none;
                min-height: 50px;
            }
            .menu-edit-create .form-group input[type="file"] {
                height: 50px;
            }
            .menu-edit-create .form-group input[type="date"] {
                width: 100%;
                padding: 15px 15px 15px 14px !important;
                font-size: 14px;
                font-weight: 600;
                border: 1px solid #707070;
                border-radius: 8px;
                background-color: #eeeff8;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #1f2a44;
                outline: none;
                height: 50px;
            }

            .menu-edit-create .form-group .btn-addcategory {
                width: 100%;
                font-size: 14px;
                font-weight: 600;
                border: 1px solid #707070;
                border-radius: 8px;
                background-color: #eeeff8;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #1f2a44;
                cursor: pointer;
                outline: none;
                height: 50px;
                transition: background 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .menu-edit-create .form-group .btn-addcategory:hover {
                    background-color: #1193d3;
                    border-color: #1193d3;
                    color: #fff;
                }

            .menu-edit-create .form-group .btn-remove {
                width: 100%;
                font-size: 14px;
                font-weight: 600;
                border: 1px solid #e3342f;
                border-radius: 8px;
                background-color: transparent;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #e3342f;
                cursor: pointer;
                outline: none;
                height: 50px;
                transition: background 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .menu-edit-create .form-group .btn-remove:hover {
                    background-color: #cc1f1a;
                    border-color: #cc1f1a;
                    color: #fff;
                }

        .menu-edit-create .twoColumn {
            display: flex;
            gap: 15px;
            align-items: flex-end;
        }

        .menu-edit-create .form-group.per30 {
            width: 30%;
        }

        .menu-edit-create .form-group.per50 {
            width: 50%;
        }

        .menu-edit-create .form-group.per70 {
            width: 70%;
        }

        .menu-edit-create .custom-checkbox label {
            display: flex;
            margin-bottom: 5px;
            font-weight: 500;
        }

            .menu-edit-create .custom-checkbox label::before {
                margin-right: 10px;
                border: 1px solid #707070;
                background: transparent;
            }

        .menu-edit-create .custom-checkbox input[type="checkbox"]:checked + label::before {
            border: 1px solid #1193d3;
        }

        .menu-edit-create p {
            font-size: 14px;
            margin-bottom: 15px;
        }

    @media (max-width: 1200px) {
        .menu-edit-create {
            grid-template-columns: repeat(1, 1fr);
            gap: 0px;
        }
    }

    @media (max-width: 576px) {
        .menu-edit-create .twoColumn {
            display: block !important;
        }

        .menu-edit-create .form-group.per30,
        .menu-edit-create .form-group.per50,
        .menu-edit-create .form-group.per70 {
            width: 100%;
            padding: 0 0 15px 0;
        }

        .mobile-pb4 {
            padding-bottom: 4px !important;
        }
    }


    .datepicker-flatpickr .dropdown-header {
        padding: 0 !important;
    }

    .datepicker-flatpickr .flatpickr-dropdown input {
        width: 100%;
        padding: 22px 40px 8px 14px;
        font-size: 14px;
        font-weight: 600;
        border: 0px solid #707070;
        border-radius: 8px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        cursor: pointer;
        outline: none;
    }

    .datepicker-flatpickr .flatpickr-dropdown ::-webkit-input-placeholder {
        color: #1f2a44;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .datepicker-flatpickr .flatpickr-dropdown :-ms-input-placeholder {
        color: #1f2a44;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .datepicker-flatpickr .flatpickr-dropdown ::-ms-input-placeholder {
        color: #1f2a44;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }


    .active-footer.main-container {
        height: calc(100vh - 151px);
    }

    .active-footer.mobile-footer {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
    }

    @media (max-width: 768px) {
        .active-footer.mobile-footer {
            display: block !important;
        }
    }

    .login-panel {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        background-color: #eeeff8;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .login-panel .tiles-section {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1400px;
            width: 100%;
        }

            .login-panel .tiles-section .tile-inner {
                align-items: center;
                justify-content: center;
            }

                .login-panel .tiles-section .tile-inner img {
                    height: 42px;
                }


    .login-box {
        background: #fff;
        padding: 40px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        width: 100%;
        text-align: center;
        max-width: 420px;
    }

        .login-box h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            color: #222;
        }

        .login-box p {
            margin: 0 0 25px;
            color: #979797;
            font-size: 14px;
            font-weight: 500;
        }

        .login-box .input-group {
            position: relative;
            margin-bottom: 15px;
        }

            .login-box .input-group input {
                width: 100%;
                padding: 15px 15px 15px 54px;
                font-size: 14px;
                font-weight: 600;
                border: 1px solid #707070;
                border-radius: 8px;
                background-color: #ffffff;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #1f2a44;
                outline: none;
                height: 50px;
            }

                .login-box .input-group input:focus {
                    border-color: #2979ff;
                }

    .input-group .icon {
        position: absolute;
        top: 50%;
        left: 9px;
        transform: translateY(-50%);
        color: #888;
        font-size: 16px;
        background-color: #eeeff8;
        width: 32px;
        height: 32px;
        border-radius: 5px;
    }

    .input-group .toggle {
        position: absolute;
        top: 53%;
        right: 12px;
        transform: translateY(-50%);
        cursor: pointer;
        color: #888;
    }

    .login-box .input-group img {
        height: 20px;
    }

    .forgot {
        display: block;
        text-align: right;
        font-size: 12px;
        color: #1193d3;
        font-weight: 500;
        text-decoration: none;
    }

        .forgot:hover {
            text-decoration: underline;
        }

    .login-btn {
        width: 100%;
        padding: 15px;
        background: #1193d3;
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s;
    }

        .login-btn:hover {
            background: #001d4d;
        }

    .easy-login {
        display: block;
        text-align: center;
        margin-top: 10px;
        font-size: 12px;
        text-decoration: none;
        font-weight: 500;
        color: #535353;
    }

    .easy-login-btn {
        text-align: center;
        font-size: 12px;
        color: #1193d3;
        font-weight: 500;
        text-decoration: none;
    }

    .login-box .input-group ::-webkit-input-placeholder {
        color: #888;
        font-size: 14px;
        font-weight: 500;
    }

    .login-box .input-group :-ms-input-placeholder {
        color: #888;
        font-size: 14px;
        font-weight: 500;
    }

    .login-box .input-group ::-ms-input-placeholder {
        color: #888;
        font-size: 14px;
        font-weight: 500;
    }

    .header-logins {
        display: flex;
        gap: 20px;
    }

        .header-logins a {
            display: flex;
            color: #fff;
            font-size: 14px;
        }

            .header-logins a img {
                height: 18px;
                margin-right: 5px;
            }

    @media (max-width: 768px) {
        .header-logins {
            display: none;
        }
    }









    .custom-form-group p {
        font-size: 14px;
    }

    .custom-form-group input {
        width: 100%;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 8px;
        background-color: #ffffff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        outline: none;
        height: 50px;
    }


    .pagination {
        display: flex;
        padding-left: 0;
        list-style: none;
        border-radius: .25rem;
    }

        .pagination li {
            margin: 0 2px;
        }

        .pagination a, .pagination span {
            position: relative;
            display: block;
            padding: .5rem .75rem;
            line-height: 1.25;
            color: #1193d3;
            background-color: #fff;
            border: 1px solid #dee2e6;
            text-decoration: none;
        }

            .pagination a:hover {
                color: #0056b3;
                background-color: #e9ecef;
                border-color: #dee2e6;
            }

        .pagination .active a, .pagination .active span {
            z-index: 1;
            color: #fff;
            background-color: #1193d3;
            border-color: #1193d3;
        }

        .pagination .disabled a, .pagination .disabled span {
            color: #6c757d;
            pointer-events: none;
            cursor: auto;
            background-color: #fff;
            border-color: #dee2e6;
        }

    .loading-panel {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .loading-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }



    /* Modal Overlay */
    .loading-panel {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.55);
        z-index: 1050;
        justify-content: center;
        align-items: center;
    }

    .modal-dialog {
        max-width: 420px;
        margin: auto;
        transform: translateY(-20px);
        animation: slideDown 0.3s ease-out forwards;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .modal-content {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }

        .modal-content .modal-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            background-color: #f9f9f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-content .modal-title {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .modal-content .close {
            background: none;
            border: none;
            font-size: 28px;
            color: #4b4b4b;
            cursor: pointer;
            line-height: 0;
        }

            .modal-content .close:hover {
                color: #000;
            }

        .modal-content .modal-body {
            padding: 20px 50px;
            font-size: 14px;
            color: #555;
            line-height: 1.4;
            text-align: center;
            font-weight: 500;
        }

        .modal-content .modal-footer {
            padding: 12px 20px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            border-top: 1px solid #eee;
        }

        .modal-content .btn {
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .modal-content .btn-secondary {
            background-color: #ffffff;
            border: none;
            color: #475155;
            border: 1px solid #475155;
        }

            .modal-content .btn-secondary:hover {
                background-color: #475155;
                color: #fff;
            }

        .modal-content .btn-danger {
            background-color: #e3342f;
            border: none;
            color: #fff;
        }

            .modal-content .btn-danger:hover {
                background-color: #cc1f1a;
            }

    /* Modal Animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }





    /* Container */
    .d-inline {
        display: inline !important;
    }

    .d-flex {
        display: flex;
    }

    .d-inline-flex {
        display: inline-flex;
    }

    /* Direction */
    .flex-row {
        flex-direction: row;
    }

    .flex-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-column {
        flex-direction: column;
    }

    .flex-column-reverse {
        flex-direction: column-reverse;
    }

    /* Justify Content */
    .justify-start {
        justify-content: flex-start;
    }

    .justify-center {
        justify-content: center;
    }

    .justify-end {
        justify-content: flex-end;
    }

    .justify-between {
        justify-content: space-between;
    }

    .justify-around {
        justify-content: space-around;
    }

    .justify-evenly {
        justify-content: space-evenly;
    }

    /* Align Items */
    .items-start {
        align-items: flex-start;
    }

    .items-center {
        align-items: center;
    }

    .items-end {
        align-items: flex-end;
    }

    .items-stretch {
        align-items: stretch;
    }

    .items-baseline {
        align-items: baseline;
    }

    /* Flex Wrap */
    .flex-wrap {
        flex-wrap: wrap;
    }

    .flex-nowrap {
        flex-wrap: nowrap;
    }

    .flex-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    /* Flex Grow & Shrink */
    .flex-grow {
        flex: 1 1 auto;
    }

    .flex-shrink {
        flex: 0 1 auto;
    }

    .flex-none {
        flex: none;
    }
    .gap-15{
        gap:15px;
    }


.addNew-btn,
.edit-btn {
    background-color: #139bdc;
    border: 1px solid #139bdc;
    outline: 0;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

        .addNew-btn:hover,
        .edit-btn:hover {
            background-color: #001d4d;
            border: 1px solid #001d4d;
            color: #fff;
        }


    .delete-btn {
        background-color: #e3342f;
        border: 1px solid #e3342f;
        outline: 0;
        padding: 10px 20px;
        border-radius: 6px;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .delete-btn:hover {
            background-color: #cc1f1a;
            border: 1px solid #cc1f1a;
            color: #fff;
        }

    .goback-btn {
        background-color: transparent;
        border: 1px solid #475155;
        outline: 0;
        padding: 10px 20px;
        border-radius: 6px;
        color: #475155;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-left: 10px;
    }

        .goback-btn:hover {
            background-color: #475155;
            border: 1px solid #475155;
            color: #fff;
        }

    .btn-left-text {
        font-size: 14px;
        font-weight: 500;
        padding-right: 10px;
    }
    /* matches the window width and aligns items*/
    .input-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        gap: 10px; /* spacing between inputs */
        width: 100%;
    }

    @media (max-width: 1200px) {
        .input-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .input-row {
            grid-template-columns: 1fr;
        }
    }


    .select-dropdown select,
    .input-custom input {
        padding: 22px 50px 8px 14px !important;
    }

    .input-custom input {
        width: 100%;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 8px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        cursor: auto;
        outline: none;
    }

    .input-custom::after {
        display: none;
    }


    .custom-responsive-table input[type="checkbox"],
    .custom-checkbox-dropdown-menu input[type="checkbox"],
    .default-checkbox input[type="checkbox"] {
        appearance: none; /* Remove default style */
        -webkit-appearance: none; /* For Safari */
        -moz-appearance: none; /* For Firefox */
        width: 25px;
        height: 25px;
        min-width: 25px;
        border-radius: 4px;
        position: relative;
        cursor: pointer;
        background: #b6c4cb;
    }

        /* ::before � blue background when checked */
        .custom-responsive-table input[type="checkbox"]:checked::before,
        .custom-checkbox-dropdown-menu input[type="checkbox"]:checked::before,
        .default-checkbox input[type="checkbox"]:checked::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            display: inline-block;
            width: 25px;
            height: 25px;
            border-radius: 4px;
            background: #b6c4cb;
        }

        /* ::after � tick mark */
        .custom-responsive-table input[type="checkbox"]:checked::after,
        .custom-checkbox-dropdown-menu input[type="checkbox"]:checked::after,
        .default-checkbox input[type="checkbox"]:checked::after {
            content: "";
            position: absolute;
            left: 0px;
            top: 0px;
            width: 25px;
            height: 25px;
            background-color: #1193d3;
            background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M6.173 12.727 2.1 8.654l1.414-1.414 2.659 2.659 6.313-6.313 1.414 1.414z'/></svg>");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 15px;
            border-radius: 4px;
        }

    /* Disabled state */
    .custom-responsive-table input[type="checkbox"] {
        cursor: not-allowed;
    }



    .custom-checkbox-dropdown {
        position: relative;
    }

    .custom-checkbox-dropdown-toggle {
        text-align: left;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: #fff;
        cursor: pointer;
        user-select: none;
        width: 100%;
        padding: 15px 50px 15px 14px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 8px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        cursor: pointer;
        outline: none;
        height: 50px;
        position: relative;
    }

        .custom-checkbox-dropdown-toggle::after {
            content: "";
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-30%);
            pointer-events: none;
            background: url(../Images/dropdown-arrow.svg) no-repeat;
            transition: transform 0.3s ease;
            width: 13px;
            height: 13px;
        }

    .custom-checkbox-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

        .custom-checkbox-dropdown-menu label {
            display: flex;
            align-items: center;
            margin: 0 0 10px 0;
            font-size: 14px;
        }

    .custom-checkbox-dropdown.open .custom-checkbox-dropdown-menu {
        display: block;
    }

    .custom-checkbox-dropdown-menu label input {
        margin-right: 8px;
    }

    .checkbox-button input {
        display: none;
    }

    .checkbox-button {
        padding: 0 !important;
    }

        .checkbox-button input + span {
            width: 100%;
            padding: 15px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid #707070;
            border-radius: 8px;
            background-color: #eeeff8;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            color: #1f2a44;
            cursor: pointer;
            outline: none;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .checkbox-button input:checked + span {
            background-color: #1193d3;
            border-color: #1193d3;
            color: #fff;
        }

    .default-checkbox {
        font-weight: 500 !important;
        font-size: 13px !important;
        color: #707070 !important;
    }

        .default-checkbox > .d-flex {
            gap: 20px;
        }

        .default-checkbox label {
            font-weight: 500 !important;
            font-size: 13px !important;
            color: #707070 !important;
            display: flex !important;
            align-items: center;
            gap: 8px;
        }


    /*default button*/
    .btn {
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        text-align: center;
        display: inline-block;
        text-decoration: none;
    }



    .two-col-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        font-size: 14px;
    }

    .form-group.custom-dropdown span.select2-selection {
        width: 100%;
        padding: 15px 15px 15px 14px !important;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 8px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        outline: none;
        height: 50px;
    }

        .form-group.custom-dropdown span.select2-selection .select2-selection__rendered {
            line-height: normal !important;
        }

        .form-group.custom-dropdown span.select2-selection .select2-selection__arrow {
            display: none !important;
        }

    .select2-dropdown {
        background-color: #eeeff8 !important;
    }

    .select2-search--dropdown {
        display: block;
        padding: 10px 15px;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        border: 1px solid #707070;
        background-color: #eeeff8;
        height: 45px;
        border-radius: 8px;
        padding: 10px 15px;
        outline: none;
    }

    .select2-results__option {
        padding: 7px 15px;
        font-size: 14px;
        font-weight: 400;
    }

    .select2-search--dropdown {
        padding: 10px 15px !important;
    }



    .tab-nav {
        display: flex;
        border-bottom: 1px solid #ddd; /* separator line under tabs */
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

        .tab-nav li {
            margin: 0;
        }

        .tab-nav a {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            color: #999; /* inactive tab color */
            font-size: 14px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }

            .tab-nav a:hover {
                color: #333; /* darker on hover */
            }

        .tab-nav .active a {
            color: #001d4d; /* active tab text color (blue) */
            border-bottom: 2px solid #001d4d; /* underline highlight */
        }



    /* Base alert style */
    .alert {
        position: relative;
        padding: 10px 40px 10px 16px;
        margin: 10px 0;
        border: 1px solid transparent;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
    }

    /* Variants */
    .alert-success {
        background-color: #d4edda;
        border-color: #c3e6cb;
        color: #155724;
    }

    .alert-danger {
        background-color: #f8d7da;
        border-color: #f5c6cb;
        color: #721c24;
    }

    .alert-warning {
        background-color: #fff3cd;
        border-color: #ffeeba;
        color: #856404;
    }

    .alert-info {
        background-color: #d1ecf1;
        border-color: #bee5eb;
        color: #0c5460;
    }

    /* Close button */
    .alert .close {
        position: absolute;
        top: 8px;
        right: 12px;
        background: none;
        border: none;
        font-size: 20px;
        line-height: 20px;
        color: inherit;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.2s ease;
    }

        .alert .close:hover {
            opacity: 1;
        }



    .authenticator-list ol {
        margin-left: 30px;
    }

    .authenticator-list p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .authenticator-list kbd {
        padding: 0.2rem 0.4rem;
        font-size: 87.5%;
        color: #fff;
        background-color: #212529;
        border-radius: 0.2rem;
    }

    .authenticator-list #qrCode {
        margin: 15px;
    }

    .text-danger.validation-summary-errors {
    }

    .lists-tbl h5 {
        padding: 4px 0 2px 0;
        text-align: left;
        position: relative;
        font-size: 14px;
        font-weight: 600;
        color: #001d4d;
    }

    .lists-tbl td span {
        display: inline-block;
        padding: 4px 08px;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: .25rem;
        margin-bottom: 4px;
    }

        .lists-tbl td span.badge-detail {
            color: #fff;
            background-color: #7d99b3;
        }

        .lists-tbl td span.badge-info {
            color: #fff;
            background-color: #006ce1;
        }


    pre {
        font-family: "Monaco", "Consolas", "Courier New", monospace; /* Monospaced font */
        font-size: 13px; /* Slightly smaller font size */
        line-height: 1.3; /* Line spacing */
        color: #333; /* Dark text color */
        white-space: pre-wrap; /* wrap lines */
        word-wrap: break-word; /* break long words if needed */
        width: 100%; /* limit to container width */
        overflow-wrap: anywhere; /* modern browsers */
    }

    .input-group {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
    }

        .input-group > .form-control.textbox-value-mod {
            position: relative;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            width: 1% !important;
            margin-bottom: 0;
            border-right: 0 !important;
            border-bottom-right-radius: 0 !important;
            border-top-right-radius: 0 !important;
        }

    .input-group-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0.375rem 0.75rem;
        margin-bottom: 0;
        font-size: 0.9375rem;
        font-weight: 500;
        line-height: 1.5;
        color: #515e5e;
        text-align: center;
        white-space: nowrap;
        background-color: #dedfef;
        border: 1px solid #707070;
        border-radius: 8px;
        height: 50px;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    #signatureParent {
        color: #001d4d;
        background-color: #dedfef;
        padding: 15px;
        margin: 5px 0 0 0;
        border: 0;
        font: inherit;
        vertical-align: baseline;
        border-radius: 8px 8px 0 8px;
    }

    #signature {
        padding: 0 0 0 0;
        margin: 0 0 0 0;
        border: 2px dotted #001d4d;
        font: inherit;
        vertical-align: baseline;
        border-radius: 8px;
    }

    #clearSignatureBtn {
        padding: 6px 25px;
        background: #e3342f;
        border: none;
        border-radius: 0 0 7px 7px;
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        cursor: pointer;
        transition: background 0.3s;
        text-align: center;
        float: right;
    }

    .BuildRecipe-grid {
        gap: 25px;
    }

    .BuildRecipe-btns button,
    .BuildRecipe-btns a {
        min-width: auto !important;
    }

    .grid-gap-none {
        grid-template-columns: none;
        gap: 0;
    }

    .per-80 {
        width: 80%;
    }

    .per-20 {
        width: 350px;
    }

    .BuildRecipe-grid input {
        padding-right: 15px !important
    }

    .BuildRecipe-grid .custom-responsive-table {
        margin-top: 10px;
    }

    .BuildRecipe-tbl th,
    .BuildRecipe-tbl td {
        padding: 10px 8px !important;
    }

    .BuildRecipe-tbl input,
    .BuildRecipe-tbl select {
        width: 100%;
        padding: 13px 12px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 7px;
        background-color: #eeeff8;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        color: #1f2a44;
        outline: none;
        min-height: 45px;
        position: relative;
    }

    .BuildRecipe-tbl select {
        background: url("../Images/dropdown-arrow.svg") no-repeat right 13px center;
        background-size: 12px;
    }

    .table-responsive.BuildRecipe-tbl td .btn-primary {
        min-width: auto !important;
        padding: 13px 25px;
        margin-left: 0px !important;
    }

    .BuildRecipe-textarea {
        margin: 25px 0;
        border-top: 1px solid #c7c7c7;
        padding-top: 25px;
    }

        .BuildRecipe-textarea textarea,
        .form-group textarea {
            width: 100%;
            padding: 13px 12px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid #707070;
            border-radius: 7px;
            background-color: #eeeff8;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            color: #1f2a44;
            outline: none;
            min-height: 125px;
        }


    .summary-tbl {
        padding: 15px 10px;
        background-color: #fff;
        border-radius: 8px;
        margin-top: 45px;
        position: sticky;
        top: 0px;
    }

        .summary-tbl td {
            padding: 5px 0;
            position: relative;
        }

        .summary-tbl strong {
            font-size: 14px;
            font-weight: 600;
        }

        .summary-tbl input,
        .summary-tbl .editmode-summary {
            width: 100%;
            padding: 7px 15px !important;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid #c9cbdb;
            border-radius: 7px;
            background-color: #ffffff;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            color: #1f2a44;
            outline: none;
            min-height: 40px;
            text-align: right !important;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .summary-tbl .pricepercentage input,
        .summary-tbl .pricepercentage .editmode-summary {
            padding-right: 35px !important;
        }

        .summary-tbl .pricepercentage:after {
            content: "";
            position: absolute;
            right: 14px;
            top: 17px;
            pointer-events: none;
            transition: transform 0.3s ease;
            width: 16px;
            height: 16px;
            background: url(../Images/price-percentage.svg);
            background-size: cover;
        }

        .summary-tbl input[readonly] {
            border: 1px solid #c9cbdb !important;
            background-color: #f2f3ff !important;
        }

    .custom-responsive-table.thead-button .Actions-container .action-btn {
        padding: 9px 12px !important;
    }

    .summary-tbl input::-webkit-outer-spin-button,
    .summary-tbl input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .summary-tbl input[type=number] {
        -moz-appearance: textfield;
    }

    @media (max-width: 1350px) {
        .d-flex.BuildRecipe-grid {
            display: block;
        }

        .BuildRecipe-grid .per-80,
        .BuildRecipe-grid .per-20,
        .BuildRecipe-grid table {
            width: 100% !important;
        }
    }

    .BuildRecipe-tbl.BuildRecipe-editmode th,
    .BuildRecipe-tbl.BuildRecipe-editmode td {
        border: 1px solid #c6c9db;
    }

    .list-none ul {
        list-style: none;
    }

    .thead-button .thead-light {
        background-color: #d9e3e9;
    }

        .thead-button .thead-light th {
            padding: 20px 15px;
        }

    .thead-button td {
        padding: 15px !important;
    }

    .thead-button .thead-light tr:hover {
        background-color: #d9e3e9 !important;
    }

    .select-multi {
        width: 100%;
        min-height: 142px;
        padding: 10px;
        outline: none;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #707070;
        border-radius: 7px;
        background-color: #eeeff8;
    }

    .list-items-two {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
        .list-items-two .list-item-with-action,
        .list-items-three .list-item-with-action {
            display: flex;
            align-items: center;
        }

        .list-items-three {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

    .list-item-with-action span {
        display: inline-block;
        padding-left: 10px;
        font-size: 15px;
        font-weight: 500;
    }

    .list-item-with-action .delete-btn {
        padding: 6px 8px !important;
    }

        .list-item-with-action .delete-btn img {
            width: 14px;
            height: 14px;
        }

    .custom-label {
        width: 100%;
        font-size: 13px;
        font-weight: 600;
        color: #707070;
        padding: 0 0 4px 0;
        display: block;
    }


    #report {
        overflow: auto;
    }

        #report table {
            width: 100%;
        }

            #report table th {
                padding: 10px 20px !important;
                background-color: #d9e3e9;
                font-size: 15px;
                font-weight: 600;
            }

            #report table td {
                padding: 10px 20px !important;
                background-color: #ffffff;
                font-size: 14px;
                font-weight: 500;
                min-width: 180px;
            }

        #report .bg-danger {
            background-color: #b40000;
        }

        #report .bg-success {
            background-color: #1da900;
        }

        #report .white-texted {
            color: #fff;
        }

        #report .txtOvrFlwEllipsis {
            min-width: 700px;
        }

    .bg-transparent {
        background-color: transparent !important;
    }


    @media (max-width:768px) {
        .list-items-two {
            grid-template-columns: repeat(1, 1fr);
           margin-bottom:25px;
        }
        .list-items-three {
            grid-template-columns: repeat(2, 1fr);
            margin-bottom: 25px;
        }
    }


.empty-section,
th.empty-section {
    padding: 15px 20px !important;
    background-color: #d9e3e9 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #8396b4 !important;
    display: block;
    text-align: center;
}



.form-control.hasDatepicker {
    cursor: pointer;
}

    /* Container */
    .ui-datepicker {
        background: #f0f8ff;
        border: 1px solid #001d4d;
        border-radius: 8px;
        padding: 10px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index:9999 !important;
        display:none;
    }

        /* Header */
        .ui-datepicker .ui-datepicker-header {
            background: #001d4d;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
            /* Header */
            .ui-datepicker .ui-datepicker-header a:nth-of-type(1) {
                order: 1; /* first link */
            }

            .ui-datepicker .ui-datepicker-header div {
                order: 2; /* first link */
            }

            .ui-datepicker .ui-datepicker-header a:nth-of-type(2) {
                order: 3; /* first link */
            }


    /* Month/Year title */
.ui-datepicker-title {
    font-weight: 600;
    font-size: 13px;
}

    /* Prev/Next arrows */
    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        cursor: pointer;
        color: #fff;
        font-size: 10px;
    }


    /* Day grid */
    .ui-datepicker table {
        width: 100%;
        border-collapse: collapse;
        margin: 5px 0;
    }

    .ui-datepicker th {
        color: #005bbb;
        font-weight: bold;
        padding: 5px;
    }

    .ui-datepicker td {
        text-align: center;
        padding: 2px;
    }

        .ui-datepicker td a {
            display: block;
            padding: 2px 6px;
            text-decoration: none;
            color: #003366;
            border-radius: 4px;
            transition: background 0.2s;
        }

            /* Hover effect */
            .ui-datepicker td a:hover {
                background: #cce5ff;
                color: #003366;
            }

        /* Selected date */
        .ui-datepicker td .ui-state-active {
            background: #1e90ff !important;
            color: #fff !important;
            font-weight: bold;
        }

    /* Today's date */
    .ui-datepicker .ui-state-highlight {
        background: #87cefa !important;
        color: #003366 !important;
    }


    .roles-landing tr td:nth-child(1) {
        width: 100% !important
    }

    .roles-landing .Actions-container {
        justify-content: flex-start !important;
    }


    #menuRadioButtons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

        #menuRadioButtons img {
            width: 100%;
            max-height: 180px;
            object-fit: contain;
            margin-top: 5px;
            border-radius: 8px;
/*            background-color: #e8e9f2;*/
        }








    .radio-group {
        display: flex;
        gap: 25px;
    }

    .radio-card {
        flex: 1;
        border: 1.5px solid #d0d7e2;
        border-radius: 8px;
        padding: 15px 15px 10px 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fff;
    }
        /* Hide default radio */
        .radio-card input[type="radio"] {
            display: none;
        }

    #menuRadioButtons label {
        font-size: 14px;
        font-weight: 500;
    }

    .radio-card h4 {
        margin: 0 0 3px;
        font-size: 14px;
        font-weight: 600;
        color: #3a3a3a;
        display: flex;
        align-items: center;
        gap: 6px;
        align-items: flex-start;
        padding-left: 24px;
        position: relative;
    }

    .radio-card p {
        margin: 0;
        font-size: 14px;
        color: #6b7280;
        display: inline-block;
        padding-left: 24px;
    }

    .radio-card h4::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 2px solid #999;
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 1px;
    }

    /* Checked state */
    .radio-card input[type="radio"]:checked + h4::before {
        border: 5px solid #1193d3; /* blue inner circle */
    }

    .radio-card input[type="radio"]:checked ~ h4 {
        color: #111827;
    }

    .radio-card input[type="radio"]:checked ~ p {
        color: #374151;
    }

    .radio-card:has(input[type="radio"]:checked) {
        border: 1.5px solid #1193d3;
        background: #f8fbff;
    }


    @media (max-width:768px) {
        .mobileDouble-btns {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

            .mobileDouble-btns div {
                width: 50%;
            }

            .mobileDouble-btns input,
            .mobileDouble-btns a,
            .mobileDouble-btns button {
                width: 100% !important;
                margin: 0 !important;
                min-width: auto;
                padding-left: 10px;
                padding-right: 10px;
            }

        .BuildRecipe-btns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
    }

    @media (max-width:1400px) {
        .BuildRecipe-btns {
            margin-top: 10px;
        }

        .justify-end.BuildRecipe-btns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .BuildRecipe-btns button,
        .BuildRecipe-btns a {
            margin: 0 !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
    }




.header-toggle {
    display: flex;
    align-items: center;
}
#sidebar {
    transition: width 0.3s ease;
}

    #sidebar.collapsed {
        width: 80px !important;
        z-index: 10 !important;
    }

    .sidebar .top-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #2d3748;
    }

.toggle-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    margin-left: 60px;
    padding: 10px;
}


.collapsed .menu .submenu {
    display: none;
    list-style: none;
    padding-left: 40px;
    font-size: 14px;
    color: #9ca3af;
}

#sidebar.collapsed .submenu,
.main-container .left-panel.collapsed p,
.left-panel.collapsed .menu-item span {
    display: none !important;
}



/*#sidebar.collapsed .menu-btn {
    position: relative;
}

    #sidebar.collapsed .menu-btn:hover::after {
        content: attr(data-title);
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: #111827;
        color: #fff;
        padding: 6px 10px;
        border-radius: 6px;
        white-space: nowrap;
        margin-left: 8px;
        font-size: 13px;
        opacity: 0;
        pointer-events: none;
        animation: fadeIn 0.2s forwards;
        z-index: 9999;
    }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}*/


/* ===== LOADER OVERLAY ===== */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.98); /* dark semi-transparent overlay */
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

    #loader-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }

/* ===== LOADER ANIMATION ===== */
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    border-top-color: #2563eb; /* blue spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


#sidebar.collapsed:hover {
    width: 300px !important;
    z-index: 9 !important;
}

    #sidebar.collapsed:hover .submenu {
        display: block !important;
        padding-left: 0 !important;
    }

.left-panel.collapsed:hover .menu-item span {
    display: block !important;
}

.lists-display .reports-search-left {
    width:100%;
    max-width: 350px;
}
@media (max-width:568px) {
    .lists-display.d-flex {
        width: 100%;
        display: block !important;
    }
    .lists-display .reports-search-left {
        margin-bottom: 10px;
        max-width: 100%;
    }
}
@media (max-width:768px) {
    .lists-tbl td {
        width: 100%;
        display: block !important;
    }
    .mobile-twoRowGrid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


.login-box .groupCheck {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:15px;
}
    .login-box .groupCheck .custom-checkbox label::before {
        width: 18px;
        height: 18px;
    }
    .login-box .groupCheck label {
        font-size: 12px !important;
        font-weight: 500;
        color: #535353;
    }
.login-box .custom-checkbox input[type="checkbox"]:checked + label::before {
    background-size: 13px;
}


.twoInput-button {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px)) auto !important;
    width: 100% !important;
}
    .twoInput-button .main-btn {
        min-height: 52px;
    }
    .twoInput-button .dropdown-selected.flatpickr-dropdown {
        width: 100% !important;
    }
    .twoInput-button .dropdown-selected.flatpickr-dropdown input {
        padding-right: 14px !important;
    }
    .twoInput-button .custom-search {
        width: 100%;
    }

@media (max-width:992px) {
    .twoInput-button {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width:768px) {
    .twoInput-button {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.formgroup-mb10 .form-group {
    padding: 0 0 15px 0 !important;
}


.menu-logout {
    border-top: 1px solid #eeeff8;
    border-radius: 0;
    padding-top: 5px;
    margin-top: 10px;
}

    .menu-logout a {
        width: 100%;
        background: none;
        border: none;
        color: #172b4d;
        text-align: left;
        padding: 10px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



/*Food and Safety Checklist*/
.page-mgr-insight.mgr-insight {
    padding: 50px 100px;
    width: 100%;
}

.page-mgr-insight .mgr-header {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 28px;
}

.page-mgr-insight .mgr-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Cards column */
.page-mgr-insight .card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
}

.page-mgr-insight .insight-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 0 rgba(11,43,74,0.04);
}

.page-mgr-insight .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-mgr-insight .pill {
    display: inline-block;
    background: #08273f;
    color: #fff;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.page-mgr-insight .progress-wrap {
    margin-top: 10px;
}

.page-mgr-insight .progress-track {
    height: 8px;
    background: #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.page-mgr-insight .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0b2b4a, #0e3b62);
    transition: width .6s ease;
}

/* Right column */
.page-mgr-insight .right-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-mgr-insight .panel {
    background: transparent;
}

    .page-mgr-insight .panel h3 {
        font-size: 18px;
        color: #0b2b4a;
        font-weight: 700;
        margin-bottom: 12px;
    }

.page-mgr-insight .upcoming-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #172b4d;
    line-height: 1.8;
    font-size: 14px;
}

.page-mgr-insight .tip-box {
    background: transparent;
}

.page-mgr-insight .tip-body {
    color: #8b97a8;
    font-size: 14px;
    padding: 10px 0 0 0;
}

.page-mgr-insight .menu-link {
    display: inline-block;
    color: #0b78c9;
    margin-top: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width:1350px) {
    .page-mgr-insight.mgr-insight {
        padding: 10px 30px;
    }
    .page-mgr-insight .mgr-grid {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width:992px) {
    .page-mgr-insight.mgr-insight {
        padding: 10px 0px;
    }

    .page-mgr-insight .mgr-grid {
        grid-template-columns: 1fr !important;
    }

    .page-mgr-insight .card-stack {
        max-width: 100%;
    }
}




/*** Notification Section ***/
.header-notification {
    margin-right: 50px;
    padding-top: 7px;
    position:relative;
}
.header-notification img {
    height:32px;
}
    .header-notification span {
        position: absolute;
        top: 0px;
        left: 21px;
        background-color: #e3342f;
        color: #fff;
        border-radius: 50%;
        padding: 2px 2px;
        font-size: 10px;
        font-weight: 100;
        min-width: 19px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }


    .notification-list {
        margin: 20px auto;
    }

.notification {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

    .notification[data-status="unread"] {
        background: #f0f6ff;
        border-color: #d2e3ff;
    }

    .notification[data-status="read"],
    .notification[data-status="deleted"] {
        background: #ffffff;
    }
    .notification .d-flex.items-center.w-full img {
        position: absolute;
        top: 22px;
    }
.notif-header {
    width: 100%;
    padding-left: 45px;
}

.notif-title {
    font-weight: 600;
    font-size: 15px;
    color: #172b4d;
}

.notif-date {
    font-size: 13px;
    font-weight: 500;
    color: #707070;
    min-width: 170px;
    text-align: right;
}

.notif-preview {
    color: #172b4d;
    margin-top: 4px;
    line-height: 1.4;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 60%;
}

.notif-body {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #172b4d;
    line-height: 1.5;
    display: none;
    font-size: 13px;
}


/* notification waves */
.notification-dot {
    animation: wavePulse 1.5s infinite ease-out;
    transform-origin: center;
}
.notification-new {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #dd0612 !important;
    position: absolute;
    left: 35px;
    top: 21px;
    z-index: 20;
}
@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.notification[data-status="read"] .notification-dot,
.notification[data-status="read"] .notif-bin img,
.notification[data-status="deleted"] .notification-dot,
.notification[data-status="deleted"] .notif-bin img {
    display: none;
}

.notification-dropdown select {
    padding: 10px 50px 10px 14px !important;
    font-size: 13px !important;
}

.notif-bin {
    width: 10%;
    text-align: right;
}

@media (max-width:992px) {
    .notif-bin {
        position:absolute;
        top:14px;
        right:10px;
    }
    .notif-preview {
        -webkit-line-clamp: 2;
        max-width: 100%;
    }
    .notif-mob-full{
        display:block;
    }
    .notif-header {
        padding-right: 25px;
    }
    .notif-date {
        text-align: left;
        padding: 10px 0 0 45px;
    }
}