﻿.custom-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 10px 20px;
    background: #ffffff;
    /* border: 1px solid #dcdcdc; */
    border-radius: 10px;
    width: fit-content;
}

    .custom-header img {
        height: 75px;
    }

    .custom-header .title-text {
        font-size: 22px;
        font-weight: bold;
        line-height: 32px;
        white-space: nowrap;
    }

.up-gov-logo img {
    width: 80px;
    height: auto;
    margin-right: -14px;
}

.profile-media img {
    width: 48px;
    height: auto;
    border-radius: 50%;
}


.bg-primary-light {
    background-color: rgb(255 255 255 / 18%);
}


.bg-info-light {
    background-color: rgb(255 255 255 / 36%);
}

.bg-success-light {
    background-color: rgb(255 255 255 / 29%);
}

.bg-warning-light {
    background-color: rgb(255 255 255 / 23%);
}


.bg-danger-light {
    background-color: rgb(255 255 255 / 39%);
}

.bg-secondary-light {
    background-color: #ffffff57;
}


.project-name h4 {
    font-size: 18px;
    margin-top: 8px;
    color: #ffffff;
}

.total-project .total {
    padding-bottom: -2px;
    /* line-height: 20px; */
    color: #000;
}

#statisticschart {
    height: 300px;
}

.connectedSortable {
    min-height: 100px;
}

.chart-box {
    height: 420px;
    display: flex;
    flex-direction: column;
}

    .chart-box canvas {
        flex: 1;
        height: 100% !important;
    }

#donutChart {
    max-height: 350px;
}

@media (min-width: 1400px) {
    .chart-box {
        height: 500px;
    }
}

@media (min-width: 1700px) {
    .chart-box {
        height: 550px;
    }
}

.border-green {
    /* border-bottom: 2px solid #00ac46 !important; */
}

.border-blue {
    /* border-bottom: 2px solid #6868ec !important; */
}

.border-l-blue {
    /* border-bottom: 2px solid #12cbe2 !important; */
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
}

.pagination {
    list-style: none;
    display: flex;
    padding: 0;
}

    .pagination li {
        margin: 0 4px;
        cursor: pointer;
        padding: 4px 12px;
        border: 1px solid #1b96d3;
        border-radius: 4px;
    }

        .pagination li.active {
            background-color: #1b96d3;
            color: white;
        }

        .pagination li.disabled {
            color: #aaa;
            cursor: not-allowed;
        }

.logo-wrapper a img {
    width: 70px;
    height: auto;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(218 234 243 / 30%);
}



.table-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.left-box,
.right-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.entries-select {
    padding: 6px 30px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    outline: none;
    font-size: 14px;
}

.search-input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    width: 200px;
}


#myTable .label {
    border-radius: 2px;
    color: #848484;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    text-transform: capitalize;
}



.action-col {
    position: relative;
}

.action-menu-wrapper {
    position: relative;
    display: inline-block;
}

.action-icon {
    cursor: pointer;
    font-size: 18px;
    padding: 6px;
}

/* Dropdown */
.action-dropdown {
    position: absolute;
    top: 26px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 160px;
    display: none;
    z-index: 999;
}

    .action-dropdown li a {
        display: block;
        padding: 4px 12px;
        font-size: 14px;
        text-decoration: none;
        color: #333;
    }

        .action-dropdown li a:hover {
            background: #f5f5f5;
        }



.logCheck {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

    .logCheck input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .logCheck .checkmark {
        width: 18px;
        height: 18px;
        background-color: #e6e6e6;
        border-radius: 4px;
        display: inline-block;
        transition: 0.3s;
        border: 1px solid #ccc;
    }

    /* When checked */
    .logCheck input:checked + .checkmark {
        background-color: #28a745;
        border-color: #28a745;
    }

    /* Tick mark */
    .logCheck .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .logCheck input:checked + .checkmark:after {
        display: block;
    }

    .logCheck .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }




.custom-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Popup Box */
.custom-popup-box {
    width: 90%;
    max-width: 850px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    animation: popupFade 0.25s ease;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.custom-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .custom-popup-header h4 {
        font-size: 20px;
        font-weight: 600;
    }

.custom-close-btn {
    background: none;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

/* Subtitle */
.custom-popup-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Buttons */
.custom-popup-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .custom-popup-footer .apply-btn {
        background: #F56828;
        color: #fff;
        padding: 10px 25px;
        border-radius: 6px;
        border: none;
    }

    .custom-popup-footer .clear-btn {
        background: #343A40;
        color: #fff;
        padding: 10px 25px;
        border-radius: 6px;
        border: none;
    }



/*---------------------------------------login-------------------------------*/
.top-logo-head {
    display: flex;
    justify-content: flex-start;
    position: relative;
    align-items: center;
    gap: 20px;
}

    .top-logo-head .gov-title {
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 0px;
    }

    .top-logo-head .sub-title {
        font-size: 15px;
        margin-top: 5px;
        color: #555;
        margin-bottom: 0px;
    }

.login-section {
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-section {
    background-attachment: fixed;
    background-image: linear-gradient(#00000000, #0009), url(../images/about/login-bg-3.png) !important;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-box {
    width: 70%;
    height: auto;
    background: #fff;
    margin: 0px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    max-width: 900px;
}

.left-section {
    background-image: url('../images/about/loginbg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    position: relative;
    height: 610px;
    width: 438px;
}

.tank-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}

.powered {
    position: absolute;
    bottom: 15px;
    left: 30px;
    font-size: 13px;
    color: #444;
}

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

    .gov-title span {
        color: #ff7a2c;
    }

.sub-title {
    font-size: 15px;
    margin-top: 5px;
    color: #555;
}


.tabs {
    width: 300px;
    background: #eeeeee;
}

.tab-btn {
    width: 50%;
    padding: 10px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

    .tab-btn.active {
        background: #fff;
        border-bottom: 3px solid #ff6b2d;
    }


.login-box .login-box {
    width: 80%;
}

.login-box .custom-label {
    font-weight: bold;
    font-size: 14px;
}

.login-box .custom-input {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #cdd1d5;
    padding-left: 12px;
    font-size: 14px;
}

    .login-box .custom-input:focus {
        border-color: #ff7a2c;
        box-shadow: 0 0 4px rgba(255, 122, 44, 0.5);
    }


.captcha-placeholder {
    background: #f5f5f5;
    border: 1px solid #cccccc;
    padding: 12px;
    width: 200px;
    border-radius: 5px;
    font-size: 13px;
    color: #444;
}


.forgot-link {
    margin-top: 15px;
    display: inline-block;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.btn-row {
    display: flex;
    gap: 15px;
}

.btn-orange {
    background: #ff7a2c;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

    .btn-orange:hover {
        background: #2d2d2d;
        color: white;
    }

.btn-darkgray {
    background: #2d2d2d;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

    .btn-darkgray:hover {
        background: #ff7a2c;
        color: white;
    }

.contact {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

@media screen and (max-width: 768px) {

    .container-box {
        height: auto;
        width: 95%;
    }

    .login-box {
        width: 100%;
    }

    .tabs {
        width: 100%;
    }
}




.top-logos {
    margin-top: -10px;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.top-logo-img {
    height: 55px;
    object-fit: contain;
}

.logo-box {
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: center;
    padding-right: 60px;
    margin: 0 auto;
}

.border-end {
    border-right: 1px solid #ddd !important;
}

.right-section {
    padding: 20px 0px 20px 30px;
    border-left: 1px solid #ddd;
    /* margin-left: 30px; */
}

.login-box {
    width: 100%;
    max-width: 400px;
}


.login-custom-header {
    position: absolute;
    top: 0px;
    /* left: 20px; */
    /* right: 20px; */
    display: flex;
    align-items: center;
    gap: 5px;
    /* background: rgba(255, 255, 255, 0.85); */ /* slight white background */
    padding: 20px 15px;
    border-radius: 10px;
    width: 100%;
    flex-wrap: wrap;
}


    .login-custom-header img {
        height: 55px;
        object-fit: contain;
    }

    .login-custom-header .title-text {
        font-size: 17px;
        font-weight: 700;
        line-height: 22px;
        color: #000;
        text-align: center;
        flex-grow: 1;
    }


.logo-icon-wrapper a img {
    width: 50px;
    height: auto;
}


.element {
    background-color: #fffefa;
    background-image: repeating-linear-gradient(45deg, #cccccc00, #cccccc38 1px, transparent 1px, transparent 5px), repeating-linear-gradient(-45deg, #cccccc00, #cccccc45 1px, transparent 1px, transparent 5px);
}



@media (max-width: 767px) {
    .wizard-footer {
        width: 200px;
    }

    .size-column {
        padding-top: 20px;
    }

    .right-section {
        padding: 20px 20px 20px 20px;
    }
}


.submenu-content {
    display: none;
}

    .submenu-content.open {
        display: block !important;
    }

.submenu-title.open .sub-arrow i {
    transform: rotate(90deg);
}



.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    gap: 20px;
}

.form-group {
    flex: 1 1 45%;
    min-width: 250px; 
    margin-bottom: 10px;
}

    .form-group.full-width {
        flex: 1 1 100%;
        margin-right: 0;
    }


.btn-custom-black {
    background-color: #333; 
    color: #fff; 
    border: none;
}

    .btn-custom-black:hover {
        background-color: #222;
    }




.radio-group {
    margin-bottom: 20px;
    font-weight: 600;
}

    .radio-group label {
        font-weight: 600;
        margin-right: 20px;
        cursor: pointer;
    }

    .radio-group input[type="radio"] {
        margin-right: 8px;
        cursor: pointer;
    }

.upload-btn {
    background: #222;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

    .upload-btn:hover {
        background: #444;
    }

.download-links {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 30px;
    font-size: 14px;
}

    .download-links a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding-bottom: 11px;
    }

        .download-links a:hover {
            text-decoration: underline;
        }

.instruction {
    font-size: 12px;
    color: #555;
    max-width: 500px;
    line-height: 1.4;
}

    .instruction strong {
        display: block;
        margin-bottom: 6px;
    }

.btn-back {
    background: #222;
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

    .btn-back:hover {
        background: #444;
    }




.nav-sub-childmenu {
    padding-left: 15px;
}

/* Second level submenu */
.nav-sub-childmenu-level2 {
    padding-left: 30px; /* indent more if needed */
    border-left: 2px dashed var(--sidebar-border-color);
}



.insta-embed-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

    .insta-embed-card img {
        width: 70px;
        border-radius: 50%;
        margin-bottom: 10px;
    }



.project-counter h2 {
    color: #fff;
    margin-top: 4px;
}


.small-widget {
    position: relative;
    border-radius: 18px;
    padding: 6px;
    color: #fff;
    overflow: hidden;
}

    .small-widget:before {
        background: #ffffff14;
        bottom: -16px;
        right: -30px;
        z-index: 1;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        content: "";
        width: 160px;
        height: 160px;
        position: absolute;
    }

.left-corner {
    display: flex;
    align-items: center;
    gap: 14px;
}




.mini-chart {
    width: 90px;
    height: 46px;
    /* margin-left: 10px; */
}


.bg-blue {
    background: linear-gradient(to right, #FFFFFF, #dfe5f4);
}

.bg-green {
    background: linear-gradient(to right, #FFFFFF, #dff2ed);
}

.bg-orange {
    background: linear-gradient(to right, #FFFFFF, #f7eee3);
}

.bg-purple {
    background: linear-gradient(to right, #FFFFFF, #efe8ff);
}

.bg-pink {
    background: linear-gradient(to right, #FFFFFF, #fceafa);
}

.bg-teal {
    background: linear-gradient(to right, #FFFFFF, #e6f4f9);
}

.up {
    color: #000000;
}

.down {
    color: #000000;
}

/* ==== ICON BACKGROUND COLORS ==== */
.icon-blue {
    background: #487fff;
    color: #ffffff;
}

.icon-green {
    background: #45b369;
    color: #ffffff;
}

.icon-orange {
    background: #f4941e;
    color: #ffffff;
}

.icon-purple {
    background: #8252e9;
    color: #ffffff;
}

.icon-pink {
    background: #de3ace;
    color: #ffffff;
}

.icon-teal {
    background: #00b8f2;
    color: #ffffff;
}

@media (min-width: 1200px) and (max-width: 1399.8px) {
    .stat-card {
        padding: 18px;
        /* min-height: 120px; */
    }
    .stats-grid {
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important;
}
    .stat-value {
    font-size: 26px !important;
    font-weight: 600 !important;
}
}



.bg-gradient-start-1 {
    background: linear-gradient(to right, #E6F9FF, #FEFFFF);
}

.bg-gradient-start-2 {
    background: linear-gradient(to right, #F7E9FF, #FFFEFD);
}

.bg-gradient-start-3 {
    background: linear-gradient(to right, #E6EBFF, #FFFFFF);
}

.bg-gradient-start-4 {
    background: linear-gradient(to right, #E8FFF5, #FFFFFF);
}

.bg-gradient-start-5 {
    background: linear-gradient(to right, #FFEEEE, #FFFCFC);
}




.sign-in-bg {
    background-image: url('../images/about/login-bg-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .sign-in-bg .main-container {
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        border-radius: 0.6rem;
        overflow: hidden;
    }

        .sign-in-bg .main-container .main-content-box {
            background-image: url('../images/about/login-box-bg.png');
            background-position: center;
            background-color: rgba(255, 255, 255, 1);
            background-size: cover;
            padding: calc(20px + 28 * (100vw - 300px) / 1620);
            border-radius: 0.6rem;
            overflow: hidden;
        }

        .sign-in-bg .main-container .signup-content span img {
            width: 200px;
            display: block;
            margin: auto;
        }

.form-content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
}

    .form-content-box h2 {
        margin-bottom: 0;
        font-size: calc(22px + 13 * (100vw - 300px) / 1620);
        white-space: nowrap;
    }

    .form-content-box p {
        color: rgb(255, 255, 255, 0.8);
        font-weight: 500;
        font-size: calc(12px + 4 * (100vw - 300px) / 1620);
    }

    .form-content-box .form-container {
        padding: 0 2rem;
    }

        .form-content-box .form-container .form-check-input, .form-content-box .form-container .form-control {
            background-color: rgba(255, 255, 255, 0.4);
            color: rgba(255, 255, 255, 1);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .form-content-box .form-container .app-divider-v p {
            font-size: 15px;
            background-color: #287c84;
        }

.image-content-box .signup-bg-img img {
    margin: auto;
    display: block;
}


@media (max-width: 767px) {
    .btn-row {
        flex-wrap: wrap;
    }
}



/*====================================================CUSTOM===============================================*/



/*---------------------------------------------------logo---------------------------------------------------*/
.sidebar-header {
    padding: 10px 10px 10px;
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.logo-icon {
    /* width: 50px; */
    /* height: 50px; */
    /* background: linear-gradient(135deg, #0077b6fc, #00b4d8bf); */
    border-radius: 12px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    /* color: #000; */
}
.logo-icon img{
    width: 200px;
    height: auto;
}

    .logo-text .title {
        font-size: 14px;
        font-weight: 600;
        color: #393939;
        line-height: 19px;
    }

    .logo-text .sub {
        font-size: 12px;
        color: #3a3a3a;
        margin-top: 3px;
    }

.dept-name {
    padding: 12px 20px;
    font-size: 10px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--card-border);
    line-height: 1.5;
}

/*---------------------------------------------------end----------------------------------------------------*/



/*----------------------------------------------dashboard---------------------------------------------------*/

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .section-head h2 {
        font-size: 22px;
        font-weight: 700;
    }


.action-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.custom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-locate {
    background: #6c757d;
    color: #fff;
}

    .btn-locate:hover {
        background: #5a6268;
        transform: translateY(-2px);
    }

.btn-book {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

    .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    }

.custom-btn i {
    font-size: 12px;
}




.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    /* background: var(--card); */
    /* border: 1px solid var(--card-border); */
    border-radius: 14px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.2s, border-color 0.2s;
}

    .stat-card:hover {
        transform: translateY(-2px);
        border-color: var(--accent);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 8px;
        /* width: 50px; */
        /* height: 50px; */
        /* background: rgb(255 255 255 / 36%); */
        /* border-radius: 50%; */
        line-height: 50px;
        transform: translate(0px, -50%);
        /* border: 2px solid #ffffff45; */
    }

.stat-label {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
    /* max-width: 90px; */
}

.stat-value {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.stat-sub {
    font-size: 11px;
    color: #fff;
    margin-top: 6px;
    font-weight: 500;
}

.stat-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 26px;
    /* opacity: 0.4; */
    color: #ffffffe0;
    transform: translate(0px, -50%);
}

.stat-card.blue .stat-value {
    color: var(--accent);
}

.stat-card.green .stat-value {
    color: var(--teal);
}

.stat-card.orange .stat-value {
    color: var(--warn);
}

.stat-card.red .stat-value {
    color: var(--danger);
}







.topbar {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    /* padding: 0 28px; */
    height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 50;
}

/*////////////////////////////////////////////////*/
.topbar .toggle-sidebar{
    display:block !important;
}
.toggle-sidebar {
    position: relative;
    left: 0;
    top: 0;
    cursor: pointer;
}

.page-wrapper.compact-wrapper .page-body-wrapper div.sidebar-wrapper.close_icon .sidebar-main .labx_logout_wrap span {
    display: none;
}

/*//////////////////////////////////////////////////*/

.topbar-title {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    /* flex-wrap: wrap; */
    justify-content: flex-end;
}

.fy-badge {
    background: #f1f3f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
}


.topbar-btn {
    background: #008ed5;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .topbar-btn:hover {
        background: #008ed5;
        transform: translateY(-2px);
    }


.icon-btn {
    padding: 9px 10px;
}


.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 5px;
    border-radius: 25px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0077b6fc, #00b4d8bf);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}


@media (max-width: 768px) {
    .topbar-actions {
        justify-content: flex-end;
    }
}







.dashboard-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    height: 100%;
    border: 1px solid #dddaf0;
}


.dashboard-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #1e293b;
}


.progress-item {
    display: grid;
    grid-template-columns: 140px 1fr 70px;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.progress-label {
    font-size: 13px;
    color: #3b4656;
    font-weight: 500;
}

.progress-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    transition: width 0.6s ease;
}

    .progress-bar-fill.danger {
        background: linear-gradient(90deg, #ef4444, #f97316);
    }

    .progress-bar-fill.success {
        background: linear-gradient(90deg, #10b981, #22d3ee);
    }

.progress-value {
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

.wqi-row {
    display: grid;
    grid-template-columns: 80px 100px 70px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wqi-range {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.wqi-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.excellent {
    background: #dcfce7;
    color: #16a34a;
}

.good {
    background: #e0f2fe;
    color: #0284c7;
}

.poor {
    background: #fef3c7;
    color: #d97706;
}

.very-poor {
    background: #ffe4e6;
    color: #ea580c;
}

.unfit {
    background: #fee2e2;
    color: #dc2626;
}

.wqi-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
}

.wqi-fill {
    height: 100%;
    border-radius: 20px;
}

.excellent-fill {
    background: #16a34a;
}

.good-fill {
    background: #0284c7;
}

.poor-fill {
    background: #d97706;
}

.very-poor-fill {
    background: #f97316;
}

.unfit-fill {
    background: #dc2626;
}

.avg-text {
    margin-top: 18px;
    font-size: 13px;
    color: #64748b;
}

    .avg-text span {
        font-weight: 600;
        color: #3b82f6;
    }



.ftk-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    transition: 0.3s ease;
    min-height: 350px;
    border: 1px solid #dddaf0;
}

    .ftk-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    }


.ftk-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    color: #1e293b;
}


.ftk-item {
    margin-bottom: 10px;
}


.ftk-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

    .ftk-head span {
        color: #475569;
        font-weight: 500;
    }

    .ftk-head strong {
        font-weight: 600;
        color: #0f172a;
    }


.ftk-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
}


.ftk-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 0.9s ease;
}

.primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.info {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.secondary {
    background: linear-gradient(90deg, #64748b, #94a3b8);
}

.success {
    background: linear-gradient(90deg, #10b981, #22d3ee);
}

.danger {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.warning {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}


.danger-text {
    color: #dc2626;
}

.success-text {
    color: #059669;
}

.warning-text {
    color: #d97706;
}


@media (max-width: 768px) {
    .ftk-card {
        padding: 16px;
    }
}




.workflow-card {
    border: none;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    border: 1px solid #dddaf0;
}


.workflow-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: #1e293b;
}


.workflow-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    text-align: center;
    transition: 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
}

.workflow-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


.workflow-text {
    font-size: 12px;
    font-weight: 500;
    color: #334155;
}


.workflow-arrow {
    font-size: 18px;
    color: #94a3b8;
}


@media (max-width: 992px) {
    .workflow-wrapper {
        justify-content: center;
    }

    .workflow-arrow {
        display: none;
    }
}

/*---------------------------------------------------end---------------------------------------------------*/


@media (min-width: 1200px) and (max-width: 1399.8px){
    .workflow-text {
    font-size: 11px;
}
    .workflow-card {
    padding: 22px 10px;
}
    .workflow-step {
    min-width: 75px;

}
    .workflow-wrapper {
    gap: 10px;
}
}



/*-----------------------------------------------------alert----------------------------------------------------*/

.custom-alert {
    background: linear-gradient(90deg, #e0f2fe, #f0f9ff);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    color: #0c4a6e;
    margin-bottom: 20px;
}


.custom-alert i {
    color: #0284c7;
    font-size: 15px;
}

.alert-text {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
}


.alert-link-custom {
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.alert-link-custom:hover {
    color: #0369a1;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .custom-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alert-link-custom {
        margin-top: 4px;
    }
}

/*------------------------------------------------------end-----------------------------------------------------*/


/*-----------------------------------------------------tabs-----------------------------------------------------*/

.custom-tabs {
    border-bottom: none;
    gap: 20px !important;
    margin-bottom: 25px;
    display: flex !important;
    justify-content: space-around;
}

.custom-tabs .nav-link {
    border: none;
    background: #f1f5f9;
    border-radius: 14px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    min-width: 400px;
    text-align: center;
    border: 1px solid #c1dcf2;
}

.custom-tabs .nav-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}


.custom-tabs .nav-link.active {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}


.custom-tabs .nav-link i {
    font-size: 18px;
}


@media (max-width: 767px) {
    .custom-tabs {
        flex-direction: column;
        align-items: center;
    }

    .custom-tabs .nav-link {
        width: 100%;
        min-width: 250px;
    }
}
/*-----------------------------------------------------end------------------------------------------------------*/


/*-------------------------------------------------tabs all inner------------------------------------------------*/
.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 24px 0;
}

.rural-section {
    background: #ffffff;
    /* padding: 25px; */
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}


.rural-field {
    display: flex;
    flex-direction: column;
}

.rural-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.rural-field label span {
    color: #e53935;
    font-weight: 700;
}

.form-select {
    border: 1px solid #dcdcdc;
    font-size: 14px;
    /* height: 38px; */
}

.form-control {
    border: 1px solid #dcdcdc;
    font-size: 14px;
    height: 38px;
    color: #202020;
    /* font-weight: 600; */
}


.rural-field .form-select:hover {
    border-color: var(--accent);
}


.rural-field .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

@media (max-width: 767px) {

    .rural-section {
        padding: 10px;
    }
    .dashboard-card {
    padding: 10px;

}

    .rural-field label {
        font-size: 13px;
    }

    .rural-field .form-select {
        height: 42px;
        font-size: 13px;
    }
}






.source-grid-wrapper {
    /* padding: 30px 0px 0px; */
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
}

.source-box {
    padding: 18px 8px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    /* border: 2px solid transparent; */
}

.source-box  span{
    font-weight:500;
}
.source-box i {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}


.source-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.box-1 {
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
}

.box-2 {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}

.box-3 {
    background: linear-gradient(90deg, #00b09b, #96c93d);
}

.box-4 {
    background: linear-gradient(90deg, #fc466b, #3f5efb);
}

.box-5 {
    background: linear-gradient(90deg, #f7971e, #ffd200);
}

.box-6 {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.box-7 {
    background: linear-gradient(90deg, #ff512f, #dd2476);
}

.box-8 {
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.box-9 {
    background: linear-gradient(90deg, #396afc, #2948ff);
}

.box-10 {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
}


@media (max-width: 1400px) {
    .source-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .source-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .source-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 20px;
}


.section-title i {
    font-size: 18px;
    color: #0ea5e9;
}


.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 16px;
    }
    .section-title i {
        font-size: 16px;
    }
}



.test-table-wrapper {
    border-radius: 12px;
    /* overflow: hidden; */
    border: 1px solid #e5e7eb;
}

.test-table th {
    font-weight: 600;
    font-size: 14px;
}

.test-table td {
    font-size: 14px;
}

.test-check {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.test-table tbody tr:hover {
    background-color: #f8fafc;
}






.selected-tests-card {
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.selected-tests-card .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #023e8a;
}

.cart-items {
    min-height: 40px;
    font-size: 14px;
    color: #6c757d;
}

.divider {
    margin: 20px 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.total-box small {
    font-size: 12px;
    color: #6c757d;
}

.total-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00b4d8;
    margin: 0;
}

.proceed-btn {
    padding: 10px 22px;
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    border: none;
    width: 200px;
}

@media (max-width: 768px) {
    .total-box h3 {
        font-size: 22px;
    }

    .selected-tests-card .card-body {
        padding: 16px;
    }
}




.search-parameter-card {
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 216, 0.25);
    background: rgba(0, 180, 216, 0.05);
    backdrop-filter: blur(6px);
}

.search-parameter-card .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #023e8a;
}

.card-subtext {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 18px;
}

.search-parameter-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.search-parameter-card .form-select {
    border-radius: 8px;
    padding: 8px 12px;
}

.find-labs-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 500;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    border: none;
}

.find-labs-btn:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.table td span{
    color: #051A1A;
    font-size: 13px;
    /* font-weight: 500; */
}











.complaint-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.complaint-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.complaint-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}

.sample-id {
    font-weight: 600;
    color: #0d6efd;
}

.table thead th {
    font-size: 16px;
    font-weight: 700;
}

.table tbody td {
    /* font-size: 14px; */
    border: 1px solid #000;
    padding: 6px;
}










.feedback-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.feedback-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.feedback-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}


.rating-stars {
    display: flex;
    gap: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #adb5bd;
}

.rating-stars i {
    transition: 0.2s ease;
    color: #ffb329;
}

.rating-stars i.active,
.rating-stars i:hover,
.rating-stars i:hover ~ i {
    color: #ffc107;
}




.filter-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
    height: auto;
}

.filter-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.filter-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.filter-card .form-select {
    border-radius: 8px;
}

.filter-card .btn {
    border-radius: 8px;
    padding: 8px 12px;
}



.profile-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.profile-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}

.profile-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.profile-card .form-control,
.profile-card .form-select {
    border-radius: 8px;
}








.dwsm-dashboard {
    margin-top: 15px;
}

.dwsm-card {
  background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    border: 1px solid #dddaf0;
}

.dwsm-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dwsm-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    font-weight: 500;
}

.dwsm-table th {
    font-size: 12px;
    color: #666;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.dwsm-table td {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.dwsm-wqi {
    font-weight: 600;
    background: transparent;
}

.dwsm-wqi.good { color: #0d6efd; }
.dwsm-wqi.warn { color: #e63946; }

.dwsm-pill {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 30px;
    font-weight: 500;
}
.dwsm-progress-head span{
    font-weight:500;
}
.dwsm-pill.safe {
    background: #e1f6eb;
    color: #28a745;
}

.dwsm-pill.contaminated {
    background: #fae3e0;
    color: #dc3545;
}

.dwsm-pill.pending {
    background: #f4e6d3;
    color: #f39c12;
}


.dwsm-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.dwsm-alert.danger {
    background: rgba(230,57,70,0.08);
    border: 1px solid rgba(230,57,70,0.25);
}

.dwsm-alert.success {
    background: rgba(6,214,160,0.07);
    border: 1px solid rgba(6,214,160,0.2);
}

.dwsm-alert-title {
    font-size: 14px;
    font-weight: 600;
}

.dwsm-alert-sub {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.dwsm-progress {
    margin-bottom: 14px;
}

.dwsm-progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.dwsm-progress-bar {
    height: 6px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.dwsm-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    border-radius: 10px;
}

.dwsm-progress-fill.warn {
    background: #e63946;
}

.warn-text {
    color: #e63946;
}

.dwsm-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: 12px;
    font-weight: 500;
}

.dwsm-btn:hover {
    background: #e7f2fc;
}


.dwsmd-header-info {
    font-size: 12px;
    color: var(--dwsmd-text-dim);
    font-weight: 500;
}

.dwsmd-district-name {
    color: var(--dwsmd-accent);
    font-weight: 600;
}

.dwsmd-separator {
    margin: 0 6px;
    color: var(--dwsmd-text-dim);
}




/*---------------------------------------------------end---------------------------------------------------------*/





/*---------------------------------------------------login------------------------------------------------------*/

.jjm-login-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, #0077b6 0%, #00b4d8 70%, #90e0ef 100%);
    overflow: hidden;
}




.jjm-login-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.jjm-login-header h4 {
    font-weight: 600;
    color: #1e293b;
    margin-top: 15px;
    font-size: 24px;
    margin-bottom: 10px;
}

.jjm-login-header p {
    font-size: 14px;
    color: #5b6269;
    font-weight: 500;
    line-height: 20px;
}


.jjm-logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #ffffff;
    font-size: 40px;
}

.jjm-form-group {
    margin-bottom: 18px;
}

.jjm-form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #212529;
}

.jjm-input-group {
    position: relative;
}

.jjm-input-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9aa4b2;
    font-size: 14px;
}

.jjm-input-group .form-control {
    padding-left: 38px;
    height: 42px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d8d8d8;
}

.jjm-input-group .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.jjm-login-options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 18px;
}

.jjm-login-options a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}


.jjm-login-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: #548447;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    /* background: linear-gradient(135deg, #5a884f, #feec51); */
    color: #ffffff;
    /* box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25); */
}

.jjm-login-btn:hover {
    background: #084298;
}


.jjm-login-footer {
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
}


@media (max-width: 576px) {
    .jjm-login-card {
        padding: 25px;
    }
}
/*----------------------------------------------------end---------------------------------------------------------*/





/*-----------------------------------------------custome support cell---------------------------------------------*/

.support-cell .dwsm-info-box {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #e1e5ec;
    height: 100%;
}

.support-cell .dwsm-subtitle {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #556080;
}

.support-cell .dwsm-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.support-cell .dwsm-label {
    min-width: 90px;
    font-weight: 600;
}

.support-cell .dwsm-value {
    text-align: right;
    flex: 1;
}

/*--------------------------------------------------------end-----------------------------------------------------*/


/*-----------------------------------------------------Simple analysis-------------------------------------------*/

.simple-analysis .dwsm-btn-action {
    background: #008ed5;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.simple-analysis .dwsm-btn-action:hover {
    background: #084298;
}

.simple-analysis .dwsm-table th {
    white-space: nowrap;
}


.simple-analysis .dwsm-table td {
    padding: 10px;
    border: 1px solid #e4e4e4;
}
/*-------------------------------------------------------end-----------------------------------------------------*/


/*---------------------------------------------------lab incharge dashboard--------------------------------------*/

.lab-incharge .dwsm-btn-preview,
.lab-incharge .dwsm-btn-approve,
.lab-incharge .dwsm-btn-return {
    border: none;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 6px;
    margin: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}


.lab-incharge .dwsm-btn-preview {
    background: #0dcaf0;
    color: #fff;
}
.lab-incharge .dwsm-btn-preview:hover {
    background: #0aa2c0;
}


.lab-incharge .dwsm-btn-approve {
    background: #198754;
    color: #fff;
}
.lab-incharge .dwsm-btn-approve:hover {
    background: #146c43;
}


.lab-incharge .dwsm-btn-return {
    background: #dc3545;
    color: #fff;
}
.lab-incharge .dwsm-btn-return:hover {
    background: #b02a37;
}



/*-------------------------------------------------------end-----------------------------------------------------*/


/*---------------------------------------------state portal administration-----------------------------------------*/

.ds-fill{
    width: 15%;
    background: linear-gradient(90deg, #f4a261, #ffd166);
}

.li-fill{
    width: 25%;
    background: linear-gradient(90deg, #06d6a0, #48cae4);
}


.pill.safe {
    background: rgb(71 255 207 / 15%);
    color: #01cd98;
    border: 1px solid rgba(6,214,160,0.3);
}

.pill.received {
    background: rgb(75 225 255 / 15%);
    color: #04c2e8;
    border: 1px solid rgba(0,180,216,0.3);
}

.pilldanger{
    background: rgba(244, 162, 97, 0.15);
    color: #f4a261;
    border: 1px solid rgba(244, 162, 97, 0.3);
}


.quick-admin-header {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    color: #0f2747;
}

.quick-admin-body {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.qa-btn {
    border-radius: 40px;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: 0.3s ease;
}

.qa-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
}

.qa-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(14,165,233,0.3);
}


.qa-outline {
    background: #e1effc;
    border: 1px solid #d0e2fb;
    color: #0f2747;
}

.qa-outline:hover {
    background: #e0f2fe;
    border-color: #0ea5e9;
    color: #0284c7;
    transform: translateY(-2px);
}


.state-portal .table tbody td {
    white-space: nowrap;
}

/*-------------------------------------------------------------end------------------------------------------------------*/



/*-----------------------------------------------------------responsive-------------------------------------------------*/
@media (max-width: 767px){
    .topbar-actions .fy-badge {
    display: none;
}
    .user-name {
    font-size: 11px;
}
    .section-head {
    margin-bottom: 6px;
    flex-wrap: wrap;
}
    .section-head h2 {
    font-size: 18px;
    margin-bottom: 14px;
}
}


/*-------------------------------------------------------------end-----------------------------------------------------*/



/*----------------------------------------------------------register modal---------------------------------------------*/
/* ===== REGISTER MODAL COMMON DESIGN ===== */
.register-modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.register-modal .modal-header {
    /* background: linear-gradient(135deg, #0ea5e9, #0284c7); */
    color: #fff;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 15px 20px;
}


.register-modal .modal-title {
    font-weight: 600;
    font-size: 18px;
}


.register-modal .modal-body {
    padding: 25px;
}


.register-modal .form-label {
    font-weight: 500;
    font-size: 14px;
}


.register-modal .form-control,
.register-modal .form-select {
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    flex: 1;
}


.register-modal .form-control:focus,
.register-modal .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.15rem rgba(14,165,233,0.25);
}


.register-modal .btn-primary {
    border-radius: 8px;
    padding: 10px 30px;
    font-weight: 500;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border: none;
}

.register-modal .submit-btn{
    text-align:center;
}


/*-------------------------------------------------------------end-----------------------------------------------------*/



.jjm-stats-section {
    
}


.jjm-stat-card {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    padding: 0px;
    border-radius: 25px;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
     z-index: 1;
    /* justify-content: space-between; */
}

.jjm-stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.05),
        transparent
    );
    backdrop-filter: blur(6px);
    border-radius: 0 0 25px 25px;
    z-index: 0;
}

.jjm-stat-card > * {
    position: relative;
    z-index: 2;
}

/*.jjm-stat-card::after {
    animation: waterMove 4s ease-in-out infinite alternate;
}

@keyframes waterMove {
    from { height: 40%; }
    to { height: 50%; }
}*/

.jjm-icon-box {
    width: 120px;
    height: 120px;
    border-radius: 0px 50% 50% 0px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid #ffffff26;
    backdrop-filter: blur(10px);
    position:relative;
}

/*.jjm-icon-boxt::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0px 50% 50% 0px;
    animation: 2s ease 0s normal none infinite running playbutton;
	z-index: -1;
}
@keyframes playbutton {
	0% {
		box-shadow:0 0 0 0 rgba(255,255,255,0);
		opacity: 1; 
	}
	100% {
		box-shadow:0 0 0 5px rgba(255,255,255,1);
		opacity: 0; 
	} 
}
.jjm-icon-box::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0px 50% 50% 0px;
    animation: 2s ease 0s normal none infinite running playbutton1;
	z-index: -1;
}
@keyframes playbutton1 {
	0% {
		box-shadow:0 0 0 0 rgba(255,255,255,0);
		opacity: 1; 
	}
	100% {
		box-shadow:0 0 0 10px rgba(255,255,255,1);
		opacity: 0; 
	} 
}*/


.jjm-stat-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.jjm-stat-content p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}


.jjm-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.jjm-stat-content{
    margin-left: auto;
    padding-right: 20px;
    text-align: right;
}

.jjm-icon-box i {
    color: #ffffff;
    font-size: 40px;
}

.stat-1 {background: linear-gradient(135deg, #1a0f0f, #6e2424);}
.stat-2 {background: linear-gradient(135deg, #0f1a1f, #235f6c);}
.stat-3 {background: linear-gradient(135deg, #1a1510, #714a25);}
.stat-4 {background: linear-gradient(135deg, #14101a, #4f2672);}
.stat-5 {background: linear-gradient(135deg, #101a14, #246d40);}
.stat-6 {background: linear-gradient(135deg, #1a1015, #6c234a);}
.stat-7 {background: linear-gradient(135deg, #10131a, #273d74);}
.stat-8 {background: linear-gradient(135deg, #1a1810, #695623);}


.stat-1 h2 { color: #ff5e5e; }
.stat-2 h2 { color: #4dd0e1; }
.stat-3 h2 { color: #ffb74d; }
.stat-4 h2 { color: #ba68c8; }
.stat-5 h2 { color: #66bb6a; }
.stat-6 h2 { color: #f06292; }
.stat-7 h2 { color: #7986cb; }
.stat-8 h2 { color: #ffd54f; }

.jjm-stat-card p {
    color: rgba(255,255,255,0.8);
}



/*=======================================================nerw css================================================*/



/*-----------------------------------------------------Login-----------------------------------------------------*/
.fsda-login-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/about/log-bg.jpg');
    background-size: cover;
    /* background: linear-gradient(to bottom, #0077b6 0%, #00b4d8 70%, #90e0ef 100%); */
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #ffffff00;
    /*padding: 20px;*/
    position: relative;
    z-index: 1;
    background-size: 70%;
}

.fsda-login-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: radial-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), radial-gradient(rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.3) 166%); */
    background-color: #ffffff38;
    z-index: -1;
    /* backdrop-filter: blur(2px); */
}

.fsda-login-section {
    min-height: 100vh;
    background: #f4f6fb;
    display: flex;
    align-items: center;
}

.fsda-login-box {
    max-width: 1000px;
    margin: auto;
}


.fsda-top-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a5bdc, #6c8cff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fsda-top-icon i {
    color: #fff;
    font-size: 30px;
}


.fsda-title {
    font-weight: 700;
    color: #000;
    font-size: 26px;
    margin-bottom: 7px;
}

.fsda-sub-text {
    color: #000;
    font-size: 16px;
    margin-bottom: 0px;
}


.fsda-card {
    background-image: url('../images/about/login-bg.jpg');
    border-radius: 10px;
    padding: 34px 14px 20px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    /* backdrop-filter: blur(15px); */
    /* background: linear-gradient(to right, #083b72, #3376bd) !important; */
    /* background: linear-gradient(135deg, #136a6b, #40b7c0); */
    position:relative;
    z-index: 1;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}

.fsda-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #035e2761;
    z-index: -1;
    border-radius: 10px;
}

.fsda-card i {
    font-size: 20px;
    color: #c37459;
}
   .fsda-card .fsda-icon{
    margin-bottom: 8px;
    color: #ffffffcf;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    /* border: 2px solid #ffffff61; */
    line-height: 62px;
    background-color: #ffffff;
    /* backdrop-filter: blur(15px); */
    display: inline-block;
    box-shadow: 0px 0px 23px rgb(191 191 191 / 58%);
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #eeb29e;
    background: linear-gradient(109deg, #ffffff, #ffefd9);
   }
.fsda-card span {
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 3px 2px 2px rgb(16 82 1 / 12%);
    line-height: 26px;
    margin-bottom: 8px;
}


.fsda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.fsda-card.active i,
.fsda-card.active span {
    color: #ffffff;
}


.neupass-section {
    padding: 0px 0px;
    background: #ffffff;
    border-right: 1px solid #ddd;
    padding-right: 45px;
}


.neupass-top {
    font-size: 22px;
    letter-spacing: 1px;
    color: #173878;
    font-weight: 600;
}

.neupass-logo img {
    max-width: 90px;
    margin: 10px 0;
}

.neupass-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

.neupass-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.neupass-card p {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}


.neupass-btn {
    padding: 14px 25px;
    background: #548746;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.login-bg{
  /* background-color: #fff; */
  padding: 50px 30px 0px;
  /* box-shadow: rgba(11, 18, 33, 0.15) 0px 4.044px 16.167px 0.811px; */
  /* border-radius: 14px; */
}


.login-divider {
    position: relative;
    margin: 15px 0px 50px;
}

.login-divider span {
    background: #ffffff;
    padding: 0 15px;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 2;
    font-size: 15px;
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    transform: translateY(-50%);
}

.log-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    background-color: #feed4e;
    /* text-transform: uppercase; */
    border-radius: 4px;
    padding: 4px 9px;
}

.log-btn i {
    font-size: 10px;
    transition: all 0.3s ease;
    line-height: 20px;
    color: #000;
}

.log-btn:hover {
    color: #000;
}

.log-btn:hover i {
    transform: translateX(6px);
}



.sidebar-list i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
    color: #c7ccee;
}
.sidebar-link:hover i{
    color:#fff
}
.pin-title.sidebar-main-title{
    /* background-color: #ecfff9; */
    padding: 8px !important;
    /* border-bottom: 1px solid #ddd; */
    margin-top: 8px !important;
    position: relative;
}
.pin-title.sidebar-main-title h6{
    color: #6b7cb5;
    font-weight: 600;
}
/*------------------------------------------------------end-------------------------------------------------------*/


/*-------------------------------------------------------inpections-----------------------------------------------*/
.inpection-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.inpection-tabs .nav-link.active {
    color: #008b38;
    border-bottom: 2px solid #008b38;
    background: none;
}

.inpection-table {
    border-radius: 10px;
    /* overflow: hidden; */
    border: 1px solid #000;
}

.inpection-table thead {
    background: #f8f9fa;
    font-size: 13px;
}

.inpection-table tbody tr {
    border-top: 1px solid #eee;
}


.bg-primary-subtle {
    background: #dde7ff !important;
}

.bg-success-subtle {
    background: #dcfce7 !important;
    /* color: #186a3b; */
}

.bg-danger-subtle {
    background: #fee2e2 !important;
}

.action-icon {
    padding: 6px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #6c757d;
}

.action-icon:hover {
    background: #f1f1f1;
    color: #000;
}

.text-dark-green {
    --bs-text-opacity: 1;
    color: #548746 !important;
}





.custom-inspection-modal .modal-content {
    border-radius: 12px;
    /* padding: 15px; */
    border: none;
}

.custom-inspection-modal .modal-header {
    /* padding-bottom: 0; */
    background-color: #fff5e4;
    /* border-radius: 0; */
    padding: 10px 10px;
    margin-bottom: 10px;
}

.custom-inspection-modal .modal-title {
    font-size: 16px;
    font-weight: 600;
}


.custom-inspection-modal .form-control {
    border-radius: 6px;
    /* height: 42px; */
    font-size: 14px;
    box-shadow: none;
}

.custom-inspection-modal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
}


.custom-inspection-modal .form-label {
    font-size: 13px;
    color: #6c757d;
}

.custom-inspection-modal .btn {
    border-radius: 8px;
    padding: 6px 14px;
    /* font-size: 14px; */
}

.custom-inspection-modal .modal-body {
    padding-top: 10px;
    padding: 5px;
}


@media (min-width:1200px) and (max-width: 1399.8px) {
    .table td {
        white-space: nowrap;
    }
    .table thead th {
    white-space: nowrap;
}
}
    .chip-yellow {
    background: #fef9c3;
    color: #854d0e !important;
}
    .chip-red {
    background: #fee2e2;
    color: #b91c1c !important;
}
    .chip-green {
    background: #dcfce7;
    color: #186a3b !important;
}
    .chip-blue {
    background: #dde7ff;
    color: #1a3fa0 !important;
}
    .chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    gap: 3px;
}

.nsq-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fdeaea;
    border: 1px solid #f5b5b5;
    color: #c62828;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    /* margin: 15px; */
    margin-bottom: 10px;
}

.nsq-icon {
    font-size: 18px;
    color: #c62828;
}

.nsq-alert p {
    margin: 0;
    line-height: 1.5;
}


textarea.form-control {
    min-height: 70px;
}

.fs-10{
    font-size:10px;
}
/*---------------------------------------------------------end----------------------------------------------------*/


/*---------------------------------------------------------MIS Report----------------------------------------------*/

.mis-dashboard {
   position:relative;
}

.mis-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #c2c1c1;
}

.mis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.mis-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    color: #fff;
}

.bg1 { background: linear-gradient(45deg,#4caf50,#81c784); }
.bg2 { background: linear-gradient(45deg,#2196f3,#64b5f6); }
.bg3 { background: linear-gradient(45deg,#9c27b0,#ba68c8); }
.bg4 { background: linear-gradient(45deg,#ff9800,#ffb74d); }
.bg5 { background: linear-gradient(45deg,#607d8b,#90a4ae); }
.bg6 { background: linear-gradient(45deg,#3f51b5,#7986cb); }
.bg7 { background: linear-gradient(45deg,#009688,#4db6ac); }
.bg8 { background: linear-gradient(45deg,#e91e63,#f06292); }
.bg9 { background: linear-gradient(45deg,#795548,#a1887f); }


.mis-card h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.mis-card p {
    font-size: 14px;
    color: #000;
    margin-bottom: 16px;
    font-weight: 500;
}

.mis-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #58854e;
    color: #fff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.mis-btn i {
    font-size: 12px;
}

.mis-btn:hover {
    background: #aa4241;
    transform: translateX(3px);
    color: #fff;
}




.appdash-wrapper {

  position: relative;
}

.appdash-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.appdash-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.appdash-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.appdash-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.appdash-item:last-child {
  border-bottom: none;
}

.appdash-item span {
  color: #000;
  font-weight: 500;
}

.appdash-item strong {
  color: #111;
  font-weight: 600;
}



.app-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.app-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f3f4f6;
}

/* Title */
.app-card-title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-card-body {
    padding: 10px 12px;
}


.district-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 12.5px;
}

.district-name {
    min-width: 95px;
    font-weight: 500;
}

.district-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}

.district-bar-fill {
    height: 100%;
    background: #60a5fa;
    border-radius: 6px;
}

.district-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 100px;
    flex-shrink: 0;
}

.district-count {
    font-weight: 700;
    min-width: 45px;
    text-align: right;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.chip-red {
    background: #fee2e2;
    color: #dc2626;
}

.chip-red:hover {
    background: #dc2626;
    color: #fff !important;
}


.lab-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lab-item {
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.lab-item:last-child {
    border-bottom: none;
}

.lab-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.lab-name {
    font-weight: 600;
    font-size: 13px;
}

.lab-bottom {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.seizure-list{
    display:flex;
    flex-direction:column;
    gap: 5px;
}

.seizure-item{
    padding: 5px 0;
    border-bottom:1px solid #f3f4f6;
}

.seizure-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.seizure-id{
    font-size:11px;
    color:var(--blue);
    font-weight:600;
}

.amount{
    font-weight:700;
    color:var(--green);
}

.seizure-body .firm{
    font-weight:600;
    margin:3px 0;
}

.seizure-body .meta{
    color:var(--text-muted);
    font-size:12px;
    display:flex;
    gap:6px;
    align-items:center;
    flex-wrap:wrap;
}


.court-status-list{
    display:flex;
    flex-direction:column;
}

.court-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #f3f4f6;
    font-size:12.5px;
}

.court-label{
    font-weight:500;
    color:var(--text);
}



.revocation-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/
.revocation-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.revocation-header .icon {
    font-size: 16px;
    margin-right: 8px;
}

.revocation-header h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.revocation-table {
    width: 100%;
    border-collapse: collapse;
}

.revocation-table thead {
    background: #f9fafb;
}

.revocation-table th {
    text-align: left;
    padding: 12px 14px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.revocation-table td {
    padding: 8px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
}

.revocation-table .count {
    font-weight: 600;
}

.revocation-table .count.red {
    color: #dc2626;
}

.revocation-table .badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.revocation-table .badge.red {
    background: #fee2e2;
    color: #dc2626;
}

.revocation-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .revocation-table th,
    .revocation-table td {
        font-size: 12px;
        padding: 10px;
    }
}

/*-----------------------------------------------------------end----------------------------------------------------*/


/*-----------------------------------------------------------public dashboard--------------------------------------*/

.licdash-wrapper {
 position:relative;
}

.licdash-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.licdash-body {
  padding: 20px;
}

.licdash-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.licdash-icon-warning {
  color: #f4a100;
}

.licdash-icon-danger {
  color: #e55353;
}

.licdash-item {
  margin-bottom: 12px;
}

.licdash-name {
  font-weight: 600;
  font-size: 15px;
  color: #2c2c2c;
}

.danger-text {
  color: #d93025;
}

.licdash-sub {
  font-size: 14px;
  color: #000;
  margin-top: 3px;
  font-weight: 500;
}

.licdash-divider {
  height: 1px;
  background: #eee;
  margin: 12px 0;
}



.meddash-wrapper {
 position:relative;
}

.meddash-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.08);
}

.meddash-body {
  padding: 20px;
}

.meddash-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.meddash-desc {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.meddash-icon-blue { color: #3b82f6; }
.meddash-icon-red { color: #ef4444; }
.meddash-icon-purple { color: #8b5cf6; }

.meddash-map-box {
  position: relative;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cce3d4;
  background: #eaf7ef;
}

.meddash-map-box.success {
  border-color: #b7e4c7;
  background: #edf8f2;
}

.meddash-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) opacity(0.9);
}

.meddash-map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #2c7a4b;
  font-weight: 500;
}

.meddash-btn {
  background: #1e40af;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.meddash-btn:hover {
  background: #1633a3;
}
/*--------------------------------------------------------------end------------------------------------------------*/



/*------------------------------------------------------------lab dashboard----------------------------------------*/

.labx_body {
  background: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

/* Card */
.labx_card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.labx_card:hover {
  transform: translateY(-2px);
}

/* Header */
.labx_card_header h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* Icon */
.labx_icon {
  color: #0ea5e9; /* lab blue */
}

/* Table */
.labx_table thead th {
  font-size: 13px;
  color: #64748b;
}

.labx_table tbody tr:hover {
  background: #f1f5f9;
}

/* Badges */
.labx_badge {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.labx_badge_alert {
  background: #fee2e2;
  color: #dc2626;
}

.labx_badge_ok {
  background: #dcfce7;
  color: #16a34a;
}


.cust-info-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius:6px;
    padding: 12px 14px !important;
    margin-bottom: 12px;
}

/*--------------------------------------------------------------end------------------------------------------------*/

/*-----------------------------------------------------------submit feedback----------------------------------------*/

.lgx_card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.lgx_header h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.lgx_icon {
  color: #6366f1;
}

.lgx_tabs {
  border-bottom: 1px solid #e5e7eb;
}

.lgx_tab_btn {
  border: none !important;
  color: #64748b !important;
  font-weight: 500;
}

.lgx_tab_btn.active {
  color: #2563eb !important;
  border-bottom: 2px solid #2563eb !important;
}

.lgx_info_box {
  background: #e6f7ec;
  padding: 12px;
  border-radius: 8px;
  color: #00ac46;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lgx_label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.lgx_input {
  border-radius: 8px;
  padding: 10px;
}

.lgx_location_box {
  background: #e6f7ec;
  padding: 12px;
  border-radius: 8px;
   color: #00ac46;
}


.lgx_upload_sub {
  font-size: 12px;
  color: #5c5c5c;
}

.lgx_btn_primary {
  background: #58874c;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

.lgx_btn_primary:hover {
  background: #1e40af;
}

.lgx_upload_input {
  display: none; 
}

.lgx_upload_box {
  border: 2px dashed #9bd7b3;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  color: #000;
}


.logo-top{
    display:flex;
    align-items:center;
    justify-content: center;
    gap: 10px;
}



.top-header {
    /* background: linear-gradient(to right, rgb(255, 225, 119) 0%, rgb(207, 255, 158) 100%); */
    /* padding: 10px 0px; */
    border-bottom: 1px solid #e3e3e3;
    box-shadow: rgb(11 18 33 / 8%) 0px 4.044px 16.167px 0.811px;
    margin-bottom: 20px;
    background-color: #fff;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Left Section */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.emblem {
    width: 120px;
}

.gov-text p {
    font-size: 12px;
    margin: 0;
    color: #000;
}

.gov-text h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.soil-logo {
    width: 100px;
}

.soil-text h5 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.soil-text p {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
    .fsda-title {
    font-size: 18px;
}
    .fsda-sub-text {
    font-size: 13px;
    font-weight: 500;
}
    .login-bg {
    padding: 30px 30px 0px;
}
}


.icon-title {
    background: #87CEEB;
    color: #fff;
    /* padding: 10px; */
    border-radius: 10px;
    margin-right: 0px;
    text-align: center;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 45px;
}



.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border: none;
}

.pill-tabs {
    border: none;
    gap: 10px;
}


.pill-tabs .nav-link {
    border: none !important;
    border-radius: 30px;
    padding: 8px 18px;
    background: #54874612;
    color: #333;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: none;
}

.pill-tabs .nav-link:hover {
    background: #e2e8f0;
    color: #000;
}

.pill-tabs .nav-link.active {
    background: #548746;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.25);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.modal-title i {
    background: #ffffff;
    color: #006a6a;
    /* padding: 10px; */
    border-radius: 12px;
    margin-right: 8px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}


.form-check-input:checked {
    background-color: #548746;
    border-color: #548746;
}

@media (max-width: 767px) {
    .header h2 {
        font-size: 18px;
    }
      .header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .filters {
    justify-content: flex-start;
}
}



.custom-footer {
    background: #58854e;
    padding: 10px 0;
    /* border-top: 1px solid #e5e7eb; */
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.footer-left p {
    margin: 0;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}


.footer-right {
    text-align: right;
}

.footer-right p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.footer-right a {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}

.footer-right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-left,
    .footer-right {
        text-align: center;
        margin-bottom: 5px;
    }
}
/*--------------------------------------------------------------end--------------------------------------------------*/





.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px){
    .page-wrapper.compact-wrapper .page-body-wrapper .page-body {
    margin-right: 10px;
    margin-left: 10px !important;
}
    .nsq-alert {
    margin-top: 20px;
}
      .footer {
    margin-top: 20px;
}
}


@media (min-width: 1400px){
    .fsda-login-box {
    max-width: 1300px;
}
    .fsda-card {
    padding: 55px 14px 20px;
    margin-bottom: 40px;
}
    .fsda-card .fsda-icon {
    height: 80px;
    width: 80px;
    line-height: 90px;
}
    .fsda-card span {
    font-size: 24px;
    margin-bottom: 18px;
}
    .log-btn {
    font-size: 16px;
}
    .fsda-title {
    font-size: 30px;
}
    .fsda-sub-text {
    font-size: 19px;
}
    .neupass-logo img {
    max-width: 110px;
}
    .footer-left p {
    font-size: 16px;
}
    .footer-right p {
    font-size: 16px;
}
    .footer-right a {
    font-size: 16px;
}
    .custom-footer {
    padding: 14px 0;
}
    .fsda-icon i {
    font-size: 30px !important;
}
    .fsda-card i{
        font-size:14px;
    }
}


/*////////////////////////////////////////////new projec////////////////////////////////////*/


.bg-card-blue {
    background: linear-gradient(to right, #12355B, #4277af) !important; 
}

.bg-card-orange {
    background: linear-gradient(135deg, #C8820F, #eab45b);
}

.bg-card-green {
    background: linear-gradient(to right, #1B5E20, #67c76b) !important; 
}

.bg-card-purple {
    background: linear-gradient(135deg, #4A235A, #8d52a5); 
}

.bg-card-pink {
    background: linear-gradient(135deg, #7B1E28, #c74e5c);
}

.bg-card-teal {
    background: linear-gradient(135deg, #136a6b, #40b7c0); 
}


.sidebar-list.active .sidebar-link {
    /*background: #007BFF;*/
    color: #fff !important;
    border-radius: 8px;
}

.sidebar-list.active .sidebar-link i {
    color: #fff !important;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: 0.3s;
    text-decoration: none;
    color: #333;
}

.sidebar-link:hover {
    background: #f0f4ff;
    border-radius: 8px;
}


@media (max-width: 991px){
    .sidebar-header {
    padding: 5px 30px 5px 0px;
}
}



.top-buttons{
    display:flex;
    gap:12px;
    align-items:center;
}

.custom-btn{
    height: 32px;
    padding: 0 18px;
    border-radius: 8px;
    border:none;
    outline:none;
    font-size: 14px;
    font-weight:500;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    transition:all 0.3s ease;
}


.light-btn{
    background: #ffffff;
    color:#4b5675;
    border:1px solid #e4e7f0;
}

.light-btn:hover{
    background:#eef1f7;
}


.primary-btn{
    background: linear-gradient(90deg, #186fe9, #0392f1);
    color:#fff;
}

.primary-btn:hover{
    background:#3d63eb;
}




/*----------------------------------------------dashboard---------------------------------------*/

.ac-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ac-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f1d4d;
    margin-bottom: 25px;
}

.ac-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
}

.ac-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.ac-green {
    background: #16b67a;
}

.ac-blue {
    background: #3d7cf0;
}

.ac-orange {
    background: #f39c12;
}

.ac-purple {
    background: #9b59b6;
}


.ac-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #121a42;
    margin-bottom: 4px;
}

.ac-content p {
    font-size: 14px;
    color: #5c5c5c;
    margin: 0;
    font-weight: 500;
}

.ac-progress-item {
    margin-bottom: 15px;
}

.ac-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.ac-label {
    font-size: 15px;
    font-weight: 600;
    color: #121a42;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-label i {
    color: #9b8bb7;
    font-size: 15px;
}


.ac-progress-top span {
    color: #111111;
    font-size: 14px;
    font-weight: 500;
}


.ac-progress-bar {
    width: 100%;
    height: 6px;
    background: #e7ebf3;
    border-radius: 30px;
    overflow: hidden;
}

.ac-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3d7cf0, #18c29c);
    border-radius: 30px;
}
/*------------------------------------------------end--------------------------------------------*/


/*-----------------------------------------------company master----------------------------------*/

.fd-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fd-search-box {
    /* flex: 1; */
    min-width: 260px;
}

.fd-search-box input {
    width: 300px;
    height: 42px;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    background: #ffffff;
    color: #000000;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    font-weight: 500;
}

.fd-search-box input::placeholder {
    color: #7b8198;
}

.fd-select-box {
    min-width: 180px;
}

.fd-select-box select {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 2px solid #4f6df500;
    background: #fff;
    padding: 0 18px;
    font-size: 13px;
    color: #111827;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    font-weight: 500;
}

.fd-btn-box {
    margin-left: auto;
}

.fd-btn-box button {
    height: 41px;
    padding: 0 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #186fe9, #0392f1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.fd-btn-box button:hover {
    transform: translateY(-2px);
}

.fd-btn-box i {
    margin-right: 8px;
}

.fd-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    min-height: 106px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


.fd-blue{
    border-top: 3px solid #4f6df5;
}

.fd-green{
    border-top: 3px solid #14c77b;
}

.fd-orange{
  border-top: 3px solid #f2994a;
}

.fd-purple{
    border-top:3px solid #a855f7;
}

.fd-label {
    display: block;
    color: #4b4f60;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fd-card h2 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 5px;
    color: #16214a;
    font-weight: 600;
}

.fd-card p {
    margin: 0;
    font-size: 14px;
    color: #6b7187;
    font-weight: 500;
}


@media (max-width: 768px) {

   .fd-topbar {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
}

    .fd-btn-box {
        margin-left: 0;
    }

    .fd-btn-box button {
        width: 100%;
    }

    .fd-search-box input {
    width: 100%;
}
    .custom-btn {
    padding: 0 10px;
    font-size: 15px;

}

}


.crt-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.crt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px
}

.crt-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.crt-header span {
    color: #9aa3c2;
    font-size: 16px;
    font-weight: 600;
}

.crt-table thead th {
    border-bottom: 1px solid #e2e7f1;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 10px;
    white-space: nowrap;
    background: #ffde1a;
}

.crt-table tbody td {
    color: #2d325a;
    font-size: 13px;
    vertical-align: middle;
}

.crt-company h5 {
    font-size: 14px;
    font-weight: 600;
    color: #232952;
    margin-bottom: 4px;
    line-height: 1.2;
}

.crt-company p {
    margin: 0;
    color: #9aa3c2;
    font-size: 13px;
}

.crt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 14px;
}

.crt-blue {
    background: #dce8fb;
    color: #2f5dd1;
}

.crt-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 14px;
}

.crt-active {
    background: #d7f5e4;
    color: #128457;
}

.crt-inactive {
    background: #edf1f5;
    color: #5f6b7a;
}

.crt-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crt-edit {
    color: #4f6df5;
    text-decoration: none;
    font-weight: 600;
}

.crt-delete {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 600;
}

.crt-table tbody tr:hover {
    background: #f8faff;
}

@media (max-width: 991px) {

    .crt-table {
        min-width: 1100px;
    }

}




.company-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.company-modal-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
}

.company-modal-title{
    font-size:18px;
    font-weight:600;
    color:#111827;
    margin:0;
}

.company-modal-body{
    padding:24px;
    max-height:60vh;
    overflow-y:auto;
}

.company-modal-footer{
    padding:18px 24px;
    border-top:1px solid #edf0f7;
}

.company-section-title{
    font-size:15px;
    font-weight:600;
    color: #000000;
    margin-bottom:18px;
}

.company-label{
    font-size: 13px;
    font-weight: 600;
    color:#374151;
    margin-bottom:8px;
    display:block;
}

.company-required{
    color:#ef4444;
}


.company-input{
    height: 40px;
    border:1px solid #dbe1ea;
    border-radius: 8px;
    font-size: 13px;
    padding:10px 14px;
    box-shadow:none !important;
    font-weight: 500;
}

.company-input:focus{
    border-color:#4f73f6;
    box-shadow:0 0 0 3px rgba(79,115,246,0.12) !important;
}

.company-textarea{
    height: 80px !important;
    resize:none;
}


.company-btn{
    height: 40px;
    padding:0 22px;
    border:none;
    border-radius:12px;
    font-size: 14px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}



.company-btn-light{
    background:#f3f5fa;
    color:#4b5675;
}

.company-btn-light:hover{
    background:#e9edf7;
}



.company-btn-primary{
    background:#4f73f6;
    color:#fff;
}

.company-btn-primary:hover{
    background:#3c63ea;
}
/*--------------------------------------------------end------------------------------------------*/

/*-----------------------------------------------project master----------------------------------*/
.project-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.project-modal-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
}

.project-modal-title{
    font-size:18px;
    font-weight:600;
    color:#111827;
}

.project-modal-body{
    padding:24px;
    max-height:60vh;
    overflow-y:auto;
}

.project-modal-footer{
    padding:18px 24px;
    border-top:1px solid #edf0f7;
}

.project-section-title{
    font-size:15px;
    font-weight:600;
    color: #000;
    margin-bottom:18px;
}

.project-label{
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom:8px;
    display:block;
}

.project-required{
    color:#ef4444;
}

.project-input{
    height: 40px;
    border:1px solid #dbe1ea;
    border-radius: 8px;
    font-size:14px;
    padding:10px 14px;
    box-shadow:none !important;
}

.project-input:focus{
    border-color:#4f73f6;
    box-shadow:0 0 0 3px rgba(79,115,246,0.12) !important;
}

.project-readonly{
    /* background:#f8fafc !important; */
    color:#6b7280 !important;
}

.project-textarea{
    height: 80px !important;
    resize:none;
}

.project-btn{
    height: 40px;
    padding:0 22px;
    border:none;
    border-radius:12px;
    font-size: 14px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}

.project-btn-light{
    background:#f3f5fa;
    color:#4b5675;
}

.project-btn-light:hover{
    background:#e9edf7;
}

.project-btn-primary{
    background:#4f73f6;
    color:#fff;
}

.project-btn-primary:hover{
    background:#3c63ea;
}

.fred p{
    color:#f4a261;
}

.fgreen p{
    color:#06d6a0;
}

.badge-bp {
    background: #f3e8ff;
    color: #6b21a8;
}

.badge-bs {
    background: #d1fae5;
    color: #065f46;
}
.badge-bw {
    background: #fef3c7;
    color: #92400e;
}
/*---------------------------------------------------end-----------------------------------------*/


/*------------------------------------------------distribution center---------------------------*/
.dc-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.dc-modal-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
}

.dc-modal-title{
    font-size:18px;
    font-weight:600;
    color:#111827;
    margin:0;
}

.dc-modal-body{
    padding:24px;
    max-height:60vh;
    overflow-y:auto;
}

.dc-modal-footer{
    padding:18px 24px;
    border-top:1px solid #edf0f7;
}

.dc-section-title{
    font-size:15px;
    font-weight:600;
    color: #000;
    margin-bottom:18px;
}

.dc-label{
    font-size: 13px;
    font-weight: 600;
    color:#374151;
    margin-bottom:8px;
    display:block;
}

.dc-required{
    color:#ef4444;
}

.dc-input{
    height: 40px;
    border:1px solid #dbe1ea;
    border-radius: 8px;
    font-size:14px;
    padding:10px 14px;
    box-shadow:none !important;
}

.dc-input:focus{
    border-color:#4f73f6;
    box-shadow:0 0 0 3px rgba(79,115,246,0.12) !important;
}

.dc-readonly{
    /* background:#f8fafc !important; */
    color:#6b7280 !important;
}

.dc-textarea{
    height: 80px !important;
    resize:none;
}

.dc-btn{
    height: 40px;
    padding:0 22px;
    border:none;
    border-radius:12px;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}

.dc-btn-light{
    background:#f3f5fa;
    color:#4b5675;
}

.dc-btn-light:hover{
    background:#e9edf7;
}

.dc-btn-primary{
    background:#4f73f6;
    color:#fff;
}

.dc-btn-primary:hover{
    background:#3c63ea;
}

/*-------------------------------------------------end--------------------------------------------*/


/*------------------------------------------------warehouses---------------------------------------*/
.wh-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.wh-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #edf0f7;
    background: #fff;
}

.wh-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}


.wh-modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}


.wh-modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #edf0f7;
    background: #fff;
}

.wh-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}


.wh-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.wh-required {
    color: #ef4444;
}

.wh-input {
    height: 40px;
    border: 1px solid #dbe1ea;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
    box-shadow: none !important;
    transition: 0.3s;
}

.wh-input:focus {
    border-color: #4f73f6;
    box-shadow: 0 0 0 3px rgba(79, 115, 246, 0.12) !important;
}

.wh-readonly {
    /* background: #f8fafc !important; */
    color: #6b7280 !important;
}

.wh-textarea {
    height: 90px !important;
    resize: none;
}

.wh-btn {
    height: 40px;
    padding: 0 22px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.wh-btn-light {
    background: #f3f5fa;
    color: #4b5675;
}

.wh-btn-light:hover {
    background: #e9edf7;
}

.wh-btn-primary {
    background: #4f73f6;
    color: #fff;
}

.wh-btn-primary:hover {
    background: #3c63ea;
}

.l-bg-green {
    display: block;
    background: rgb(240, 253, 244);
    border: 0.5px solid rgb(110, 231, 183);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgb(6, 95, 70);
    margin-bottom: 2px;
    font-weight: 500;
}

.head-item h4{
    font-size:14px;
}

/*------------------------------------------------end---------------------------------------------*/



/*------------------------------------------------item category-----------------------------------*/

.cat-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cat-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #edf0f7;
}

.cat-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.cat-modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.cat-modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #edf0f7;
}

.cat-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

.cat-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.cat-required {
    color: #ef4444;
}

.cat-input {
    height: 40px;
    border: 1px solid #dbe1ea;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
    box-shadow: none !important;
}

.cat-input:focus {
    border-color: #4f73f6;
    box-shadow: 0 0 0 3px rgba(79,115,246,0.12) !important;
}

.cat-textarea {
    height: 90px !important;
    resize: none;
}

/*------------------------------------------------end---------------------------------------------*/


/*------------------------------------------------item master-------------------------------------*/

.item-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.item-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #edf0f7;
}

.item-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.item-modal-body {
    padding: 24px;
    max-height: 65vh;
    overflow-y: auto;
}

.item-modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #edf0f7;
}

.item-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 14px;
}

.item-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.item-required {
    color: #ef4444;
}

.item-input {
    height: 40px;
    border: 1px solid #dbe1ea;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
    box-shadow: none !important;
}

.item-input:focus {
    border-color: #4f73f6;
    box-shadow: 0 0 0 3px rgba(79,115,246,0.12) !important;
}

.item-textarea {
    height: 80px !important;
    resize: none;
}

.item-readonly {
    background: #f8fafc !important;
    color: #6b7280 !important;
}

.item-info-bar {
    background: #eff6ff;
    border: 0.5px solid #bfdbfe;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #1e40af;
}
/*--------------------------------------------------end--------------------------------------------*/


/*----------------------------------------------UOM Master-----------------------------------------*/
.uom-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.uom-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f7;
}

.uom-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.uom-modal-body {
    padding: 20px;
}

.uom-modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #edf0f7;
}

.uom-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.uom-required {
    color: #ef4444;
}

.uom-input {
    height: 40px;
    border: 1px solid #dbe1ea;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: none !important;
}

.uom-input:focus {
    border-color: #4f73f6;
    box-shadow: 0 0 0 3px rgba(79,115,246,0.12) !important;
}

.bltext{
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #4361ee !important;
    cursor: pointer;
}
/*---------------------------------------------------end------------------------------------------*/


/*--------------------------------------------------purchase order--------------------------------*/

.po-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.po-modal-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
}

.po-modal-title{
    font-size:18px;
    font-weight:600;
    color:#111827;
    margin:0;
}

.po-modal-body{
    padding:24px;
}

.po-modal-footer{
    padding:18px 24px;
    border-top:1px solid #edf0f7;
}


.po-section-title{
    font-size:15px;
    font-weight:600;
    color:#111827;
    margin-bottom:16px;
}

.po-label{
    font-size:13px;
    font-weight:600;
    color:#374151;
    margin-bottom:8px;
    display:block;
}

.po-required{
    color:#ef4444;
}
/* Inputs */
.po-input{
    height: 40px;
    border:1px solid #dbe1ea;
    border-radius:10px;
    font-size:14px;
    padding:10px 14px;
    box-shadow:none !important;
}

.po-input:focus{
    border-color:#4f73f6;
    box-shadow:0 0 0 3px rgba(79,115,246,0.12) !important;
}

.po-readonly{
    background:#f8fafc !important;
    color:#6b7280 !important;
}

.po-textarea{
    height: 80px !important;
    resize:none;
}

.po-btn{
    height:42px;
    padding:0 22px;
    border:none;
    border-radius:12px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.po-btn-light{
    background:#f3f5fa;
    color:#4b5675;
}

.po-btn-light:hover{
    background:#e9edf7;
}

.po-btn-primary{
    background:#4f73f6;
    color:#fff;
}

.po-btn-primary:hover{
    background:#3c63ea;
}

.po-table thead th{
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
    font-size:12px;
    color:#6b7280;
    font-weight:600;
    white-space:nowrap;
}

.po-table tbody td{
    vertical-align:middle;
    border-color:#edf0f7;
}

.po-total-box{
    min-width:260px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:16px 18px;
}

.po-total-row{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:#4b5563;
    margin-bottom:10px;
}

    .po-total-row.total {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #dbe1ea;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
    }



.po-view-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
    background:linear-gradient(135deg,#f0f4ff,#e8f5f0);
}

.po-view-meta{
    font-size:12px;
    color:#6b7280;
}

.po-status-badge{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.po-status-badge.approved{
    background:#dcfce7;
    color:#166534;
}

.po-info-card{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:16px;
    height:100%;
}

.po-info-label{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#6b7280;
    margin-bottom:10px;
}

.po-info-card h6{
    font-size:15px;
    font-weight:600;
    color:#111827;
    margin-bottom:4px;
}

.po-info-card p{
    font-size:13px;
    color:#4b5563;
    margin-bottom:4px;
}

.po-info-card span{
    display:block;
    font-size:12px;
    color:#6b7280;
    margin-bottom:2px;
}

.po-item-name{
    font-size:14px;
    font-weight:600;
    color:#111827;
}

.po-table small{
    color:#6b7280;
}

.po-remark-box{
    background:#fffbeb;
    border:1px solid #f4a261;
    border-radius:10px;
    padding:12px 14px;
    font-size:13px;
    color:#92400e;
}







.po-modal-content{
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.po-modal-header{
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f7;
    background: #fff;
}

.po-modal-header .modal-title{
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.po-modal-body{
    padding: 20px;
    background: #ffffff;
}

.po-sub-header{
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 14px;
}

.po-lbl{
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
    display: block;
}

.po-req{
    color: #ef4444;
}

.po-inp{
    border-radius: 10px;
    border: 1px solid #dbe3ef;
    font-size: 13px;
    min-height: 42px;
    box-shadow: none !important;
}

.po-inp:focus{
    border-color: #4f46e5;
}

.po-info-bar{
    background: #eef4ff;
    border: 1px solid #bfd3ff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    color: #1d4ed8;
}

.po-vendor-bar{
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    color: #166534;
}

.po-table{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.po-table thead th{
    background: #f8fafc;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.po-table td{
    font-size: 13px;
    vertical-align: middle;
}

.po-total-box{
    min-width: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
}

.po-total-row{
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #4b5563;
}

.po-total-row.total{
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.po-modal-footer{
    padding: 16px 20px;
    border-top: 1px solid #edf0f7;
    background: #fff;
}

.po-btn-light{
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
}

.po-btn-warning{
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #c2410c;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
}

.po-btn-primary{
    background: #4f46e5;
    border: 1px solid #4f46e5;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
}

.po-btn-primary:hover{
    background: #4338ca;
}

/*---------------------------------------------------end------------------------------------------*/



/*-------------------------------------------------purchase invice--------------------------------*/
.pi-modal{
    border:none;
    border-radius:16px;
    overflow:hidden;
}

.pi-header{
    padding:16px 20px;
    border-bottom:1px solid #eef2f7;
    background:linear-gradient(135deg,#f0f4ff,#fff7ed);
}

.pi-header .modal-title{
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.pi-body{
    padding:20px;
    background:#fff;
}

.pi-sub-header{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color:#111827;
    margin-bottom:14px;
}

.pi-step-badge{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pi-alert{
    background:#fffbeb;
    border:1px solid #fed7aa;
    color:#92400e;
    border-radius:10px;
    padding:12px 14px;
    font-size:12px;
    margin-bottom:18px;
}

.pi-label{
    font-size:12px;
    font-weight:500;
    color:#374151;
    margin-bottom:6px;
    display:block;
}

.pi-input{
    border-radius:10px;
    border:1px solid #dbe3ef;
    font-size:13px;
    min-height:42px;
    box-shadow:none;
}

.pi-input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.pi-readonly{
    background:#f8fafc;
    color:#6b7280;
}

.pi-po-bar{
    background:#f0fdf4;
    border:1px solid #86efac;
    color:#166534;
    border-radius:10px;
    padding:12px 14px;
    font-size:12px;
}

.pi-table thead th{
    background:#f8faff;
    color:#6b7280;
    font-size:11px;
    font-weight:600;
    border-bottom:1px solid #e5e7eb;
    white-space:nowrap;
}

.pi-table tbody td{
    font-size:12px;
    vertical-align:middle;
}

.pi-input-sm{
    min-width:80px;
    border-radius:8px;
    font-size:12px;
    height:34px;
}

.pi-remove{
    color:#dc2626;
    font-size:18px;
    cursor:pointer;
    font-weight:600;
}

.pi-total-box{
    min-width:250px;
    background:#f8faff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:14px 16px;
}

.pi-total-row{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#4b5563;
    padding:5px 0;
}

.pi-grand-total{
    border-top:1px solid #dbe3ef;
    margin-top:6px;
    padding-top:10px;
    font-size:15px;
    font-weight:700;
    color:#111827;
}

.pi-grand-total span:last-child{
    color:#2563eb;
}

.pi-footer{
    border-top:1px solid #eef2f7;
    padding:14px 20px;
}

.pi-btn{
    border-radius:10px;
    padding:9px 16px;
    font-size:13px;
    font-weight:500;
}

.pi-btn-warning{
    background:#fff7ed;
    color:#c2410c;
    border:1px solid #fdba74;
}

.pi-btn-primary{
    background:#2563eb;
    border-color:#2563eb;
    color:#fff;
}

.pi-btn-primary:hover{
    background:#1d4ed8;
}

/*----------------------------------------------------end-----------------------------------------*/



/*-----------------------------------------------vendor master------------------------------------*/
.vendor-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    background:#fff;
}

.vendor-modal-header{
    padding:18px 24px;
    border-bottom:1px solid #edf0f7;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.vendor-modal-title{
    font-size:18px;
    font-weight:600;
    color:#111827;
    margin:0;
}


.vendor-modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}
.vendor-modal-footer{
    padding:18px 24px;
    border-top:1px solid #edf0f7;
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.vm-section-title{
    font-size:15px;
    font-weight:600;
    color:#111827;
    margin:18px 0 14px;
}


.vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.vm-full{
    grid-column:1 / -1;
}

.vm-label{
    font-size:13px;
    font-weight:600;
    color:#374151;
    margin-bottom:8px;
    display:block;
}

.vm-required{
    color:#ef4444;
}

.vm-input{
    width:100%;
    height:40px;
    border:1px solid #dbe1ea;
    border-radius:10px;
    font-size:14px;
    padding:10px 14px;
    outline:none;
    transition:0.2s;
}

.vm-input:focus{
    border-color:#4f73f6;
    box-shadow:0 0 0 3px rgba(79,115,246,0.12);
}

.vm-readonly{
    /* background:#f8fafc !important; */
    color:#6b7280 !important;
}

.vm-textarea{
    height:80px;
    resize:none;
}

.vm-btn{
    height: 40px;
    padding:0 22px;
    border:none;
    border-radius:12px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:0.25s;
}

.vm-btn-light{
    background:#f3f5fa;
    color:#4b5675;
}

.vm-btn-light:hover{
    background:#e9edf7;
}

.vm-btn-primary{
    background:#4f73f6;
    color:#fff;
}

.vm-btn-primary:hover{
    background:#3c63ea;
}


/*--------------------------------------------------end------------------------------------------*/



/*------------------------------------------------GNR--------------------------------------------*/

.grn-modal-content{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0,0,0,0.08);
    background: #fff;
}

.grn-modal-header{
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f7;
    background: linear-gradient(135deg,#f0fff4,#f0f4ff);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.grn-modal-title{
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.grn-modal-body{
    padding: 22px;
}

.grn-modal-footer{
    padding: 16px 22px;
    border-top: 1px solid #edf0f7;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    background:#fff;
}


.sub-header{
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 14px 0 12px;
}

.step-badge{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4f73f6;
    color: #fff;
    font-size: 11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}


.grn-label{
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display:block;
}

.grn-input{
    height: 40px;
    width: 100%;
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: 0.2s;
    background: #fff;
}

.grn-input:focus{
    border-color: #4f73f6;
    box-shadow: 0 0 0 3px rgba(79,115,246,0.12);
}

.grn-readonly{
    background: #f8fafc !important;
    color: #6b7280 !important;
}

.grn-textarea{
    height: 80px;
    resize: none;
}

.grn-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.grn-grid .full{
    grid-column: span 2;
}


.alert-box{
    background:#fffbeb;
    border:1px solid #f4a261;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 11px;
    color:#92400e;
    margin-bottom: 12px;
}


.grn-table{
    width:100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 10px;
}

.grn-table thead th{
    background:#f8faff;
    border-bottom:1px solid #e5e7eb;
    font-size:11px;
    color:#6b7280;
    font-weight:600;
    padding:8px;
    white-space:nowrap;
}

.grn-table tbody td{
    padding:8px;
    border-bottom:1px solid #edf0f7;
    color:#374151;
    vertical-align:middle;
}


.grn-total-box{
    margin-top: 12px;
    margin-left: auto;
    width: 260px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:14px;
    font-size:13px;
}

.grn-total-box div{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    color:#4b5563;
}

.grn-total-box .total{
    border-top:1px solid #dbe1ea;
    padding-top:10px;
    margin-top:10px;
    font-weight:700;
    font-size:15px;
    color:#111827;
}


.upload-box{
    border:2px dashed #c7d7fe;
    border-radius:12px;
    padding:24px;
    text-align:center;
    background:#f8faff;
    cursor:pointer;
    transition:0.2s;
}

.upload-box:hover{
    border-color:#4f73f6;
    background:#eef2ff;
}

.upload-box p{
    margin:0;
    font-weight:600;
    font-size:13px;
    color:#111827;
}

.upload-box small{
    font-size:11px;
    color:#6b7280;
}


.grn-modal-footer .btn{
    height:40px;
    padding:0 18px;
    border-radius:10px;
    font-size:13px;
    font-weight:500;
}

/*---------------------------------------------------end-----------------------------------------*/



/*--------------------------------------------------GIN------------------------------------------*/
.gin-modal .modal-content{
    border:none;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.gin-modal-header{
    padding:12px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(135deg,#fff7ed,#fdf4ff);
    border-bottom:1px solid #eee;
}

.gin-modal-title{
    font-size:14px;
    font-weight:600;
    margin:0;
}

.gin-modal-body{
    padding:14px;
    padding: 24px;
    max-height: 65vh;
    overflow-y: auto;
}

.gin-modal-footer{
    padding:10px 14px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    border-top:1px solid #eee;
}

.gin-step-title{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:11px;
    font-weight:600;
    margin:10px 0 8px;
    color:#6b7280;
    text-transform:uppercase;
}

.gin-step-badge{
    width:16px;
    height:16px;
    border-radius:50%;
    background:#f4a261;
    color:#fff;
    font-size:9px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gin-grid-6{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
}

.gin-grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.gin-label{
    font-size:10px;
    font-weight:600;
    color:#374151;
    margin-bottom:4px;
    display:block;
}

.gin-input{
    width:100%;
    height:34px;
    font-size:12px;
    padding:6px 8px;
    border:1px solid #e5e7eb;
    border-radius:8px;
    outline:none;
}

.gin-input:focus{
    border-color:#f4a261;
    box-shadow:0 0 0 3px rgba(244,162,97,0.15);
}

.gin-readonly{
    background:#f8fafc;
    color:#6b7280;
}

.gin-table thead th{
    font-size:11px;
    background:#fff7ed;
    color:#6b7280;
    font-weight:600;
    white-space:nowrap;
}

.gin-table td{
    font-size:12px;
}

.gin-summary{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:10px;
}

.gin-remarks{
    flex:1;
}

.gin-total-box{
    min-width:220px;
    background:#fff7ed;
    border:1px solid #fcd9b0;
    border-radius:10px;
    padding:10px 12px;
}

.gin-total-box .row{
    display:flex;
    justify-content:space-between;
    font-size:11px;
    margin-bottom:4px;
}

.gin-total-box .total{
    font-weight:700;
    font-size:13px;
    color:#f4a261;
    border-top:1px solid #fcd9b0;
    padding-top:6px;
}

.f-btn-custom{
    background: linear-gradient(135deg, #f4a261, #ef4444) !important;
    border-color: #f4a261 !important;
}
/*----------------------------------------------------end-----------------------------------------*/



.crt-action{
    display:flex;
    gap:8px;
}

.crt-btn{
    border:none;
    padding:6px 10px;
    font-size:12px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    transition:0.2s;
}

.crt-edit{
    background:#eef2ff;
    color:#4f46e5;
}

.crt-edit:hover{
    background:#e0e7ff;
}

.crt-delete{
    background:#fef2f2;
    color:#ef4444;
}

.crt-delete:hover{
    background:#fee2e2;
}



.crt-view{
    background:#eef2ff;
    color:#2563eb;
    border:none;
    font-weight: 600;
}

.crt-view:hover{
    background:#dbeafe;
}




/*--------------------------------------------------my profile-----------------------------------------*/
.profile-section {
    background: #f4f6fb;
    padding: 20px;
}

.profile-sidebar,
.profile-form-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 100%;
}

.profile-cover {
    height: 120px;
    background: linear-gradient(135deg, #dce7ff, #f8d6d6);
}

.profile-image-box {
    text-align: center;
    margin-top: -75px;
}

.profile-image-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
}

.profile-user-info {
    text-align: center;
    padding: 15px;
}

.profile-user-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}

.profile-user-info p {
    color: #64748b;
    font-size: 16px;
}

.personal-info {
    padding: 14px;
    /* overflow: hidden; */
}

.personal-info h4 {
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.personal-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.personal-info ul li {
    display: flex;
    margin-bottom: 18px;
    gap: 15px;
    /* flex-wrap: wrap; */
    word-break: break-word;
    overflow-wrap: break-word;
}

.personal-info ul li span {
    min-width: 140px;
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.personal-info ul li strong {
    font-weight: 500;
    color: #475569;
    font-size: 14px;
    /* position: revert; */
}

.profile-form-card {
    padding: 30px;
}

.profile-custom-tabs {
    border-bottom: 1px solid #dbe0e6;
    gap: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.profile-custom-tabs .nav-item {
    list-style: none;
}

.profile-custom-tabs .nav-link {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

.profile-custom-tabs .nav-link:hover {
    color: #2563eb;
}

.profile-custom-tabs .nav-link.active {
    background: #eef2ff;
    color: #111827;
    border-bottom: 2px solid #2563eb;
}

@media (max-width: 991px) {
    .profile-custom-tabs {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
}

.profile-upload-box {
    margin-bottom: 30px;
}

.profile-preview {
    width: 120px;
    height: 120px;
    position: relative;
}

.profile-preview img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #4f7cff;
    object-fit: cover;
}

.upload-icon {
    position: absolute;
    right: 5px;
    bottom: -6px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eef4ff;
    border: 1px solid #4f7cff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f7cff;
    cursor: pointer;
}

.custom-form-group {
    margin-bottom: 22px;
}

.custom-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-form-group input,
.custom-form-group select,
.custom-form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0px 18px;
    font-size: 15px;
    outline: none;
}

.custom-form-group input,
.custom-form-group select {
    height: 42px;
    line-height: 42px;
}

.custom-form-group textarea {
    resize: none;
    height: 120px;
}

.custom-form-group input:focus,
.custom-form-group select:focus,
.custom-form-group textarea:focus {
    border-color: #2563eb;
}

.profile-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cancel-btn,
.save-btn {
    min-width: 170px;
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
}

.cancel-btn {
    background: #fff;
    border: 1px solid #ef4444;
    color: #ef4444;
}

.save-btn {
    background: #252b5e;
    color: #fff;
}

.notification-box label {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.notification-box input {
    margin-right: 10px;
}

@media(max-width:991px) {
    .profile-sidebar {
        margin-bottom: 20px;
    }

    .custom-tabs {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
}

/*---------------------------------------------------end-----------------------------------------------*/


/*--------------------------------------------------create user----------------------------------------*/
.create-user-section {
    background: #f4f6fb;
    padding: 25px;
}

.create-user-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.create-user-header {
    margin-bottom: 35px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.create-user-header h3 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.create-user-header p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.user-profile-upload {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.user-profile-preview {
    width: 120px;
    height: 120px;
    position: relative;
}

.user-profile-preview img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #2563eb;
    object-fit: cover;
}

.user-upload-btn {
    position: absolute;
    right: 6px;
    bottom: -7px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eef4ff;
    border: 1px solid #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    cursor: pointer;
}

.create-user-group {
    margin-bottom: 24px;
}

.create-user-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.create-user-group label span {
    color: red;
}

.create-user-group input,
.create-user-group select,
.create-user-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0px 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.create-user-group input,
.create-user-group select {
    height: 42px;
}

.create-user-group textarea {
    resize: none;
    height: 130px;
}

.create-user-group input:focus,
.create-user-group select:focus,
.create-user-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.create-user-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.cancel-user-btn,
.save-user-btn {
    min-width: 180px;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cancel-user-btn {
    background: #fff;
    border: 1px solid #ef4444;
    color: #ef4444;
}

.cancel-user-btn:hover {
    background: #ef4444;
    color: #fff;
}

.save-user-btn {
    background: #252b5e;
    color: #fff;
}

.save-user-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 991px) {
    .create-user-card {
        padding: 25px;
    }

    .create-user-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .create-user-btns {
        flex-direction: column;
    }

    .cancel-user-btn,
    .save-user-btn {
        width: 100%;
    }
}

/*---------------------------------------------------end-----------------------------------------------*/