/* Mobile ke liye */
@media only screen and (max-width: 768px) {

    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        /* ✅ scroll disable */
        font-size: 0.8rem; /* ≈ 12.8px */
        font-family: 'Inter', sans-serif;
    }

    .login-cont {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .login-inner-cont {
        width: 100%;
        height: 70%;
    }

    .header-cont {
        width: 100%;
        height: 60px;
        background-color: #fff;
        /* Blue header */
        padding: 10px 10px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* subtle shadow */
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .hdr-inner-logo {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hdr-inner-logo img {
        width: 50px;
        height: 50px;
    }

    .hdr-inner-sidebar-cont {
        width: auto;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .hdr-prof-cont {
        width: 40px;
        height: 40px;
        background-color: #91c63f;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hdr-prof-cont p {
        font-size: 1rem;
        color: #fff;
        font-weight: 600;
    }

    /* Sidebar */
    .sb-main-cont {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        /* Gradient background using your green */
        background: linear-gradient(135deg, #91c63f, #6aa82f);
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
        transition: left 0.4s ease-in-out;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        color: #fff;
        overflow-y: auto;      /* vertical scroll */
        overflow-x: hidden;    /* hide horizontal scroll */
    }

    /* Active state */
    .sb-main-cont.active {
        left: 0;
        
    }

    .sidebar-menu .submenu {
    display: none;
    list-style: none;
    padding-left: 15px; /* thoda indent */
}



    /* Profile section */
    .sidebar-header {
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .login-remember-cont{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .login-remember-cont input{
        width: 20px;
        height: 22px;
    }

    .sidebar-prof img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        margin-bottom: 10px;
        border: 2px solid #fff;
    }

    .sidebar-prof h3 {
        margin: 0;
        font-size: 18px;
    }

    .sidebar-prof p {
        margin: 0;
        font-size: 12px;
        opacity: 0.85;
    }

    /* Menu */
    .sidebar-menu {
        list-style: none;
        margin: 20px 0;
        padding: 0;
        flex-grow: 1;
    }

    .sidebar-menu li {
        margin: 8px 0;
    }

    .sidebar-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        border-radius: 8px;
        transition: background 0.3s, transform 0.2s;
    }

    .sidebar-menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        z-index: 1000;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* home css */
    /* 
 */

    .home-main-cont {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        background-color: #f0f4f8;
        padding: 10px;
        gap: 20px;
    }

    .home-wlcm-cont {
        width: 100%;
        height: 100px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-direction: column;
        padding: 10px;
    }

    .user-wlcm {
        font-size: 1rem;
        color: #6B7280;
    }

    .user-name,
    .home-total-pnd-count {
        font-size: 2.4rem;
        font-weight: 600;
        color: #4B5563;
    }

    .home-inner-main-cont{
        width: 100%;
        height: calc(100% - 200px);
        overflow: hidden;
        overflow-y: auto;
        
    }

    .home-staff-cont {
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 10px;

    }

    .home-staff-cont i {
        font-size: 2.4rem;
        color: #91c63f;
    }

    .total-pnd-text {
        font-size: 1rem;
        color: #6B7280;
    }

    .home-total-pending-order,
    .home-pnd-dry-cont {
        width: 100%;
        height: 100px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .home-total-pnd-inner-cont {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-direction: column;
        height: 100%;
        width: 50%;
    }

    .home-total-pnd-inner-cont2 {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 50%;
        align-items: center;
    }

    .home-pend-order-cont {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .home-pnd-dry-cont {
        width: 50%;
        height: 100%;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .home-over-due-order {
        width: 100%;
        height: 300px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        padding: 10px;
    }

    .home-over-due-order p {
        padding-top: 10px;
    }

    .heading {
        font-size: 1.2rem;
        font-weight: 600;
        color: #4B5563;
    }

    .home-overdue-tbl-cont {
        width: 100%;
        height: calc(100% - 20px);
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;

    }

    .over-due-inner-cont {
        width: 100%;
        height: 60px;
        border-bottom: 1px solid #c9c8c8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .over-due-icon-cont {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        background-color: #91c63f;
    }

    .over-due-icon-cont i {
        font-size: 1.2rem;
        color: #fff;
    }

    .over-due-order-id-cont {
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;

    }

    .sub-heading {
        font-size: 1rem;
        color: #6B7280;
    }

    .over-due-days-cont {
        width: 20%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .over-due-days-cont {
        font-size: 1rem;
        font-weight: 600;
        color: red;
    }

    .heading-cont-over-due {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .heading-cont-over-due i {
        color: #6B7280;
        font-size: 1.2rem;
        padding-right: 20px;
    }


    /* pending order css */

     .pnd-main-cont {
        width: 100%;
        height: calc(100% - 60px);
        display: flex;
        justify-content: center;
        align-items: start;
        background-color: #fff;
        flex-direction: column;
        gap: 20px;
    }

    .pnd-inner-head {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
    }

    .pnd-search-cont {
        width: 80%;
        height: 35px;
        border-radius: 50px;
        border: 2px solid #91c63f;
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 8px;
    }

    .pnd-search-cont input {
        width: 90%;
        height: 100%;
        border: none;
        outline: none;
        padding: 8px;
        font-size: 16px;
    }

    .pnd-inner-head i {
        font-size: 1.2rem;
    }

    .pnd-body-cont {
        width: 100%;
        height: calc(100% - 90px);
        background-color: #f0f4f8;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;
        padding: 10px;
        gap: 10px;
    }

    .pnd-order-cont {
        width: 100%;
        height: 80px;
        background-color: #91c63f;
        border-radius: 10px;
        display: flex;
        justify-content: start;
        align-items: end;
        flex-direction: column;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
    }

    .pnd-order-inner-cont {
        width: 99%;
        height: 80px;
        background-color: #91c63f;
        border-radius: 10px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .back-icon-div{
        width: 50px;
        height: 100%;
        
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pnd-irder-details-cont1{
        width: 70%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        padding: 10px;
        gap: 5px;
    }

    .pnd-irder-details-cont2{
        width: 30%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 5px;
    }


        .pnd-floating-filter {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        background-color: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        cursor: pointer;
        z-index: 1000;
        transition: 0.3s;
    }

    .pnd-floating-filter:hover {
        background-color: #0056b3;
    }

    .pending-page-heading-cont{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
    }

    /* Popup Overlay */
    .pnd-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        display: none; /* Default hidden */
        justify-content: center;  /* ✅ center horizontally */
        align-items: center;      /* ✅ center vertically */
        z-index: 2000;
        padding: 20px;
    }

    /* Popup Box - Center Modal */
    .pnd-popup-box {
        background: #fff;
        width: 100%;
        height: 50%;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transform: scale(0.7);
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .pnd-popup-overlay.active {
        display: flex;
    }

    .pnd-popup-overlay.active .pnd-popup-box {
        transform: scale(1);
        opacity: 1;
    }

    /* Close Button */
    .pnd-popup-close {
        display: inline-block;
        background: #ff4d4d;
        border: none;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        margin-bottom: 10px;
    }

    .pnd-filter-div{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .pnd-date-range{
        width: 100%;
        height: 35px;
        border: 1px solid #91c63f;
        border-radius: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
    }

    .pnd-date-range input{
        width: 80%;
        height: 100%;
        font-size: 16px;
        padding: 8px;
        border: none;
        outline: none;
    }
    
    .daterangepicker {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 85% !important;
    max-width: 320px;
    border-radius: 10px;
    z-index: 9999 !important;
    font-size: 12px !important;
}

.daterangepicker .calendar-table {
    font-size: 12px !important;
}

.daterangepicker td, 
.daterangepicker th {
    padding: 4px 6px !important;
    line-height: 1.2;
}

.daterangepicker .drp-buttons {
    font-size: 12px !important;
    padding: 4px 8px !important;
}

/* ✅ Hide Clear / Cancel button */
.daterangepicker .drp-buttons .cancelBtn {
    display: none !important;
}


.order-due-days-cont{
    width: 100%;
        height: 35px;
        border: 1px solid #91c63f;
        border-radius: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
}

.order-due-days-cont input, .order-due-days-cont select{
    width: 75%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #fff;
}

.order-filter-btn-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
}

.pnd-popup-apply {
        display: inline-block;
        background: #91c63f;
        border: none;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        margin-bottom: 10px;
    }

.pnd-gar-main-cont{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 120px;
}

.pnd-gar-header-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 5px;
}

.pnd-gar-search-box{
    width: 90%;
    height: 35px;
    border: 2px solid #91c63f;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;

}

.pnd-gar-header-cont i{
    font-size: 1.2rem;
    color: #4B5563;
}

.pnd-gar-header-cont input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
}

.back-icon{
    padding-left: 10px;
}

.pnd-gar-heading-cont{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

/* Body fills remaining space */
.pnd-gar-header-cont,
.pnd-gar-heading-cont {
    flex-shrink: 0;     /* जितनी height है उतनी ही लेंगे */
}

.pnd-gar-order-id-cont{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.pnd-gar-order-id-cont input{
    width: 20px;
    height: 20px;
}

.pnd-gar-body-cont {
    flex: 1;
    min-height: 0;  /* flex ke andar scroll enable ke liye */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    width: 100%;
    background: #f0f4f8;
}

/* Footer fix at bottom */
.pnd-footer-cont {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;  /* footer height */
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

.pnd-scan-btn{
    width: 40%;
    height: 35px;
    border-radius: 10px;
    background-color: #00467a;
    border: none;
    color: #fff;
    font-weight: 600;

}

.pnd-ready-btn{
    width: 40%;
    height: 35px;
    border-radius: 10px;
    background-color: #91c63f;
    border: none;
    color: #fff;
    font-weight: 600;

}

.pnd-gar-body-cont .pnd-order-cont{
    margin-top: 10px;
}

.pnd-gar-inner-cont{
    width: 99%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.pnd-gar-inner-cont input{
    width: 20px;
    height: 20px;
}

.pnd-gar-garment-name-cont{
    height: 100%;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 2px;
}

.pnd-gar-atten-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pnd-gar-atten-cont i{
    font-size: 1.2rem;
}

.topupservice{
    color: #91c63f;
}

.defect{
    color: red;
}

.pnd-gar-status-cont{
    width: calc(30% - 20px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.pnd-gar-status {
    width: auto;
    height: 20px;
    padding: 0 10px;          /* text ke liye thoda space */
    border-radius: 100px;
    background-color: #ffdddd; /* light red background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pnd-gar-status .status {
    color: #ff0000;           /* text red */
    font-size: 0.6rem;
    font-weight: bold;
    margin: 0;
}


/* Floating filter icon */
.pnd-floating-filter {
    position: fixed;       /* screen pe fixed rahe */
    bottom: 80px;          /* footer ke upar thoda gap */
    right: 20px;
    width: 50px;
    height: 50px;
    background: #91c63f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 20;
    transition: transform 0.2s;
}

.pnd-floating-filter:hover {
    transform: scale(1.1);
}

/* Popup overlay */
.pnd-gar-filter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;               /* hidden by default */
    display: flex;
    justify-content: center;     /* horizontal center */
    align-items: center;         /* vertical center */
    z-index: 60;
}

/* Popup content */
.pnd-gar-filter-content {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    
}

/* Close Button */
.pnd-gar-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4f;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.pnd-gar-close-btn:hover {
    background: #d9363e;
}

.pnd-gar-pop-body{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding-top: 15px;
    gap: 15px;
}

.pnd-gar-service-filter-cont{
    width: 100%;
    height: 35px;
    border: 2px solid #91c63f;
    border-radius: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;

}

.pnd-gar-service-filter-cont select{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
    font-size: 16px;
}

.pnd-gar-service-btn-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.pnd-gar-pop-close{
    width: 70px;
    height: 35px;
    background-color: #d9363e;
    border-radius: 5px;
    color: #fff;
    border: none;
}

.pnd-gar-apply-btn{
    width: 70px;
    height: 35px;
    background-color: #91c63f;
    border-radius: 5px;
    color: #fff;
    border: none;
}

.overdue {
    color: #ff4d4d;
    font-weight: bold;
}



.sub-heading.due-today {
    color: #ffa500; /* Orange background me readable text */
}

.pgd-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pgd-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.pgd-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 2rem;
}

#pdg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

#pdg-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

#pdg-table tr td:first-child {
    text-align: left;  /* left column text left */
    font-weight: bold;  /* optional: make labels bold */
    width: 40%;        /* optional: adjust width */
}

#pdg-table tr td:last-child {
    text-align: right; /* right column text right */
    width: 60%;        /* optional: adjust width */
}

.pgd-btn-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

#pgd-add-defect{
    margin-top: 10px;
    width: 80%;
    height: 30px;
    background-color: #d9363e;
    color: #fff;
    border: none;
    border-radius: 10px;
}

.pgd-defect-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pgd-defect-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.pgd-defect-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: #ff4d4d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
}

.pgd-defect-body{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding-top: 10px;
    gap: 5px;
}

.add-new-defect-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.add-new-defect-cont input{
    width: 70%;
    height: 30px;
    border: 2px solid #91c63f;
    border-radius: 10px;
    padding: 8px;
}

.add-new-defect-cont button{
    width: 30%;
    height: 30px;
    border-radius: 10px;
    background-color: #91c63f;
    color: #fff;
    border: none;
}

.defect-list-cont{
    width: 100%;
    height: 300px;
    overflow: hidden;
    overflow-y: auto;

}

.pdg-defct-cont{
    width: 100%;
    min-height: 50px;
    max-height: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px;
    padding: 10px;
}

.pdg-defect-name-cont{
    width: 65%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.defect-check{
    width: 20px;
    height: 20px;
}

.pdg-defect-upload {
    width: 30%;
    height: 35px;
    border-radius: 100px;
    background-color: #ffd6d6;
    display: flex;
    justify-content: space-between;   /* icon left, text right */
    align-items: center;
    padding: 0 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Icon styling */
.pdg-defect-upload i {
    font-size: 1rem;
    color: #d9363e;
}

/* Text styling */
.pdg-defect-upload span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #d9363e;
}

/* File input invisible but clickable */
.pdg-defect-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;   /* invisible */
    cursor: pointer;
}

.pgd-defect-cont-inner1{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pgd-defect-cont-inner2{
    width: 100%;
    height: 150px;
    border: 1px solid #ddd;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pgd-defect-cont-inner2 img{
    width: 100%;
    object-fit: cover;
}

.pgd-defect-btn-done{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.pgd-defect-btn-done button{
    width: auto;
    height: 30px;
    border-radius: 10px;
    border: none;
    background-color: #d9363e;
    color: #fff;
    padding: 8px;
    margin-top: 10px;
}

/* spinner css */
#pgd-spinner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.8); /* optional: हल्का overlay */
    top: 0;
    left: 0;
    position: fixed; /* पूरे स्क्रीन पर */
    z-index: 9999;
}

#pgd-spinner img {
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite; /* 🌀 घूमने का effect */
}

/* keyframes for rotation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* schedule pickup css */

.sch-pick-main-cont {
    width: 100%;
    height: calc(100% - 60px);
    overflow: hidden;
    display: flex;
    flex-direction: column; /* column layout */
}

.sch-body-cont {
    flex: 1; /* jitni bachi height hogi le lega */
    overflow-y: auto; /* scrollable body agar content zyada ho */
    background-color: #f4f3f2;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.sch-footer-cont {
    height: 60px;   /* apni required height set kar lo */
    background: #fff; 
    flex-shrink: 0; /* shrink hone se bacha lega */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2); /* upar se shadow */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.sch-customer-search-cont{
    width: 100%;
        height: 100px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-direction: column;
        padding: 10px;
}

.sch-search-cs-heading{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    width: 100%;
    
}

.inputbox{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #00467a;
    padding-left: 5px;
    padding-right: 5px;
}

.sch-search-cs-heading input{
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
}

.sch-date-heading-cont{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.sch-date-cont{
    width: 50%;
    height: auto;
    padding: 5px;
}

.date-cont{
    width: 100%;
    height: 32px;
    border: 1px solid #00467a;
    border-radius: 5px;
    overflow: hidden;
}

.date-cont input, .date-cont select{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    
}

.sch-date-instruction-cont{
    width: 100%;
    height: 50px;
    border: 1px solid #00467a;
    border-radius: 5px;
    overflow: hidden;
}

.sch-date-instruction-cont textarea{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 5px;
}

.sch-date-pick-cont{
    width: 100%;
    height: 32px;
    border: 1px solid #00467a;
    border-radius: 5px;
    overflow: hidden;
}

.sch-date-pick-cont select{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
}

.sch-footer-cont button{
    width: 45%;
    height: 32px;
    background-color: #91c63f;
    border: none;
    border-radius: 5px;
    color: #fff;
}

.inputbox {
    position: relative; /* parent relative */
}

.suggestions-box {
    position: absolute;
    top: 100%;  /* input के just नीचे */
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
    display: none;  /* initially hidden */
    max-height: 200px;
    overflow-y: auto;
}

.suggestions-box div {
    padding: 8px;
    cursor: pointer;
}

.suggestions-box div:hover {
    background-color: #f0f0f0;
}


/* add customer page css */

.add-cust-body-cont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.customer_details-cont{
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cust-details-heading-cont{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.cust-name-cont{
    width: 100%;
    height: 32px;
    border: 1px solid #00467a;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}

.cust-name-cont select{
    width: 30%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
    border-right: 1px solid #ddd;
    border-radius: 0px;
    text-align: center;
}

.cust-name-cont input{
    width: 70%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
}

.cust-mob, .cust-alt-mob{
    width: 100%;
    height: 32px;
    border: 1px solid #00467a;
    border-radius: 5px;
    outline: none;
    padding-left: 5px;
}

.customer_details-cont textarea{
    width: 100%;
    height: 50px;
    border: 1px solid #00467a;
    border-radius: 5px;
    padding: 5px;
    outline: none;
}

.pref{
    width: 100%;
    height: 32px;
    border: 1px solid #00467a;
    border-radius: 5px;
    padding-left: 5px;
    outline: none;
    background-color: #fff;
}

.customer-profile-cont{
    margin-top: 10px;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.customer-details-cont{
    margin-top: 10px;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.profile-image{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    
     overflow: hidden;
}

.profile-image img{
    width: 100px;
    height: 100px;
}

.customer-table {
    width: 100%;
    border-collapse: collapse; /* Optional: remove spacing between cells */
}

.customer-table td {
    padding: 8px 12px; /* Optional: spacing */
}

.customer-table tr td:first-child {
    text-align: left;   /* Left column text */
    font-weight: 600;   /* Optional: make it stand out */
}

.customer-table tr td:last-child {
    text-align: right;  /* Right column text */
}

/* all pickup css */

.pickup-body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 5px;
}

.pickup-inner-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.pickup-cont{
    width: 100%;
        height: 110px;
        background-color: #91c63f;
        border-radius: 10px;
        display: flex;
        justify-content: start;
        align-items: end;
        flex-direction: column;
        box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
}

.pickup-cont2{
    width: 99%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    
}

.pickup-name-cont{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
}
.status-cont{
    width: 100px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd6d6;
}

.pickup-name-cont{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

.pickup-date-cont{
    display: flex;
    align-items: center;
    gap: 5px;
}

.pickup-status{
    color: #d9363e;
    font-size: 0.8rem;
    
}

/* Fullscreen semi-transparent overlay */
.pickup-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto; /* scroll if popup too tall */
    padding: 15px;    /* padding for small screens */
}

/* Popup inner card */
.pickup-popup-inner {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;  /* responsive max width */
    box-sizing: border-box; /* include padding in width */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    animation: popupFade 0.3s ease-in-out;
}

/* Close button */
.pickup-popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}
.pickup-popup-close:hover {
    color: #ff4d4d;
}

/* Heading */
.pickup-popup-inner h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #00467a;
}

/* Filter field */
.pickup-filter-field {
    margin-bottom: 18px;
    width: 100%;
}
.pickup-filter-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}
.pickup-filter-field input,
.pickup-filter-field select {
    width: 100%; /* full width inside popup */
    max-width: 100%;
    box-sizing: border-box;
    height: 35px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.2s;
    font-size: 0.95rem;
}
.pickup-filter-field input:focus,
.pickup-filter-field select:focus {
    border-color: #00467a;
    box-shadow: 0 0 5px rgba(0,70,122,0.3);
}

/* Buttons */
.pickup-popup-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.pickup-popup-buttons button {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    font-size: 0.95rem;
}
#pickup-apply-filter {
    background-color: #00467a;
    color: #fff;
}
#pickup-apply-filter:hover {
    background-color: #0066a1;
}
#pickup-clear-filter {
    background-color: #ccc;
    color: #333;
}
#pickup-clear-filter:hover {
    background-color: #999;
}

/* Popup animation */
@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .pickup-popup-inner {
        padding: 25px 20px;
    }
    .pickup-filter-field input,
    .pickup-filter-field select {
        height: 40px;
        font-size: 1rem;
    }
    .pickup-popup-buttons button {
        padding: 12px 0;
        font-size: 1rem;
    }
}


/* pickup details css */
.pickd-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.pickd-card h2 {
    font-size: 1.2rem;
    color: #00467a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.pickd-card h2 i {
    margin-right: 8px;
    color: #00467a;
    font-weight: 600;
}

.pickd-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.pickd-info-row i {
    margin-right: 8px;
    color: #00467a;
    min-width: 20px;
    text-align: center;
}

.pickd-info-row span {
    font-weight: bold;
    font-size: 0.8rem;
}

.pickd-btn-group {
    display: flex;
    flex-direction: column; /* column layout */
    gap: 15px;               /* card के भीतर button spacing */
    margin-top: 15px;
}

.pickd-btn {
    height: 35px;        /* fixed height */
    line-height: 35px;   /* vertically centered text */
    padding: 0 10px;     /* horizontal padding */
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    flex: none;          /* remove flex-grow */
}

.pickd-btn-call { background-color: #91c63f; }
.pickd-btn-call:hover { background-color: #75a12f; }

.pickd-btn-location { background-color: #00467a; }
.pickd-btn-location:hover { background-color: #00467a; }

.pickd-btn-reschedule { background-color: #f59e0b; }
.pickd-btn-reschedule:hover { background-color: #d97706; }

.pickd-btn-cancel { background-color: #ef4444; }
.pickd-btn-cancel:hover { background-color: #dc2626; }

.pickd-btn-challan { background-color: #00467a; }
.pickd-btn-challan:hover { background-color: #00467a; }

.pickd-btn-view-challan { background-color: #91c63f; }
.pickd-btn-veiw-challan:hover { background-color: #75a12f; }

/* 🔹 Popup Overlay */
.reschedule-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 🔹 Popup Box */
.reschedule-content {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 350px;
    max-width: 90%;
    height: auto;           /* auto height to fit content */
    display: flex;
    flex-direction: column;
    overflow: visible;      /* no scroll */
}

/* Heading */
.reschedule-content h2 {
    margin-bottom: 10px;
    text-align: center;
}

/* Form */
.reschedule-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reschedule-form label {
    margin-top: 8px;
    font-weight: bold;
    font-size: 14px;
}

.reschedule-form input,
.reschedule-form select {
    width: 100%;
    height: 30px;           /* smaller height to fit */
    padding: 4px 6px;
    margin-top: 4px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

/* Buttons */
.popup-btns {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.popup-btns button {
    padding: 6px 12px;      /* smaller padding */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#confirmReschedule { background: #28a745; color: #fff; }
#cancelReschedule { background: #dc3545; color: #fff; }

/* Overlay */
.pickc-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Popup */
.pickc-popup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 20px;
    width: 320px;
    z-index: 1000;
    text-align: center;
}

.pickc-popup h2 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #91c63f;
}

.pickc-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

.pickc-btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pickc-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
}

.pickc-btn-apply {
    background-color: #91c63f;
}

.pickc-btn-apply:hover {
    background-color: #75a12f;
}

.pickc-btn-close {
    background-color: #ef4444;
}

.pickc-btn-close:hover {
    background-color: #dc2626;
}


/* challan page css */

/* Customer Card */
    .customer-card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        margin-bottom: 25px;
        transition: transform 0.2s;
        width: 100%;
    }
    .customer-card:hover {
        transform: translateY(-3px);
    }
    .customer-card h2 {
        margin: 0 0 10px;
        font-size: 20px;
        color: #1f2937;
    }
    .customer-card p {
        margin: 5px 0;
        color: #4b5563;
    }

    /* Services Container */
    .services-container {
        margin-bottom: 20px;
        width: 100%;
    }
    .service-block {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        position: relative;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.2s, box-shadow 0.2s;
        width: 100%;
    }
    .service-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    .service-block h3 {
        margin: 0 0 10px 0;
        display: flex;
        align-items: center;
        font-size: 18px;
        color: #111827;
    }
    .service-block img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .remove-service {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        color: red;
        font-weight: bold;
        font-size: 16px;
    }
    .service-block input, .service-block textarea {
        width: 100%;
        padding: 8px 10px;
        margin-bottom: 10px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 14px;
    }

    /* Add Service Button */
    #addServiceBtn {
        background: linear-gradient(to right, #91c63f, #6aa82f);
        color: #fff;
        border: none;
        padding: 12px 18px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.2s;
    }
    #addServiceBtn:hover {
        background: linear-gradient(to right, #91c63f, #6aa82f);
    }

.service-block label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.service-block input,
.service-block textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

#deliveryDate, input[type="date"],  input[type="time"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    height: 36px;
    background-color: #fff;
}


    /* Modal */
    .modal {
        
        position: fixed;
        top:0; left:0; right:0; bottom:0;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        display: flex;
    }
    .modal-content {
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        width: 95%;
        text-align: center;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .modal-content h3 {
        margin-bottom: 20px;
        color: #111827;
    }
    .modal-content button {
        margin: 5px;
        padding: 10px 15px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .close-modal {
        background: #00467a;
        color: #fff;
    }
    .service-select-btn {
        background: #91c63f;
        color: #fff;
    }
    .service-select-btn img {
        width: 20px;
        height: 20px;
    }

    /* schedule delivery css */

    .orders-container{
        width: 100%;
        height: auto;
    }
.order-card {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1), 0 4px 8px -2px rgba(0,0,0,0.05);
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.order-id-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-two{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-grid{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

.ser-add{
    width: auto;
    height: auto;
    display: flex;
    gap: 5px;
}
/* Checkbox */
.checkbox-label { font-size: 14px; color: #4b5563; font-weight: 500; display: flex; align-items: center; gap: 6px; }

.not-assign{
    font-size: 1rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.action-btn-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: bold;
}
.status-pending { background: #fef3c7; color: #b45309; }
.status-inprogress { background: #dcfce7; color: #166534; }



/* Buttons */
.btn-dlv {
    width: 100%;
    font-weight: bold;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
}
.btn-blue-dlv { background: #3b82f6; color: #fff; }
.btn-green-dlv { background: #34d399; color: #065f46; }
.btn-red-dlv { background: #f87171; color: #7f1d1d; }
.btn-yellow-dlv { background: #facc15; color: #78350f; }

/* Action Links */
a.action-link {
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 48%;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
}
a.btn-green { background: #91c63f; color: #fff; }
a.btn-blue { background: #00467a; color: #fff; }

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #10b981, #34d399);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 14px 28px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* --- Modal Background --- */
.assign-dlv-modal {
    /* display: none; */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Modal Box --- */
.assign-dlv-content {
    background: #fff;
    width: 90%;
    max-height: 80%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease-in-out;
}

/* Header */
.assign-dlv-header {
    background: #00467a;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.assign-dlv-header h2 {
    margin: 0;
    font-size: 18px;
}
.assign-dlv-header .assign-dlv-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Body */
.assign-dlv-body {
    padding: 15px;
    overflow-y: auto;
    flex: 1;
}
.assign-dlv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}
.assign-dlv-list li {
    margin: 8px 0;
}
.assign-dlv-datetime {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assign-dlv-datetime input{
    width: 100%;
    height: 30px;
    border: 1px solid #00467a;
    border-radius: 10px;
}

/* Footer */
.assign-dlv-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #ddd;
}
.assign-dlv-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.assign-dlv-submit {
    background: #10b981;
    color: #fff;
}
.assign-dlv-close {
    background: #e11d48;
    color: #fff;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Modal overlay */
.reschedule-dlv-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Modal content box */
.reschedule-dlv-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out;
}

/* Slide down animation */
@keyframes slideDown {
    from {transform: translateY(-50px); opacity:0;}
    to {transform: translateY(0); opacity:1;}
}

/* Header */
.reschedule-dlv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.reschedule-dlv-header h2 {
    font-size: 18px;
    margin: 0;
}

.reschedule-dlv-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Body */
.reschedule-dlv-body {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reschedule-dlv-body label {
    font-weight: bold;
}

.reschedule-dlv-body input[type="date"],
.reschedule-dlv-body input[type="time"] {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

/* Footer buttons */
.reschedule-dlv-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.reschedule-dlv-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.reschedule-dlv-btn:hover {
    opacity: 0.9;
}

.reschedule-dlv-submit {
    background-color: #16a34a;
    color: #fff;
}

.reschedule-dlv-close {
    background-color: #ef4444;
    color: #fff;
}

.order-card strong {
    font-weight: bold !important;
}


/* Order Delivery Details css */

.dlv-od-inner-cont{
    width: 100%;
    height: 100%;
    
}

.dlv-cx-card{
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1), 0 4px 8px -2px rgba(0,0,0,0.05);
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.dlv-heading-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}

.dlv-cx-details-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

.dlv-od-inner-cont strong{
    font-weight: 600 !important;
}

.dlv-cx-btn-cont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.dlv-cx-btn-cont button{
    width: 48%;
    height: 32px;
    border: none;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.dlv-green{
    background-color: #91c63f;
}

.dlv-blue{
    background-color: #00467a;
}

.dlv-hr{
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.dlv-action-btn{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.dlv-action-btn button{
    width: 98%;
    height: 32px;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.dlv-red{
    background-color: #dc3545;
}

/* 🌙 Background overlay */
.dlv-fltr-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 🧩 Modal content box */
.dlv-fltr-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: left;
    animation: dlv-fltr-fadeIn 0.2s ease-in-out;
}

@keyframes dlv-fltr-fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.dlv-fltr-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.dlv-fltr-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.dlv-fltr-input {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.dlv-fltr-input:focus {
    border-color: #007bff;
}

.dlv-fltr-btn-cont {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dlv-fltr-btn {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.dlv-fltr-apply {
    background: #28a745;
    color: #fff;
}

.dlv-fltr-cancel {
    background: #dc3545;
    color: #fff;
}

.dlv-fltr-apply:hover { background: #218838; }
.dlv-fltr-cancel:hover { background: #c82333; }

/* Modal Overlay */
.dlv-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.dlv-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: dlvSlideDown 0.3s ease-out;
}

/* Header */
.dlv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dlv-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #111;
}

.dlv-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Amount Display */
.dlv-amount-display {
    margin-bottom: 20px;
}

.dlv-amount-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.dlv-amount-row span:last-child {
    font-weight: bold;
}

.dlv-amount-row:last-child {
    border-bottom: none;
}

/* Payment Modes */
.dlv-payment-modes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.dlv-payment-mode-btn {
    flex: 1 1 30%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
}

.dlv-payment-mode-btn.active, .dlv-payment-mode-btn:hover {
    background: #34d399;
    color: #fff;
    border-color: #10b981;
}

/* Input Group */
.dlv-input-group {
    margin-bottom: 20px;
}

.dlv-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.dlv-input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #ccc;
    font-size: 1.2rem;
    box-sizing: border-box;
}

/* Action Buttons */
.dlv-action-buttons {
    display: flex;
    gap: 10px;
}

.dlv-action-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.dlv-action-buttons button:first-child {
    background: #ccc;
    color: #333;
}

.dlv-action-buttons button:first-child:hover {
    background: #bbb;
}

.dlv-action-buttons button:last-child {
    background: #10b981;
    color: #fff;
}

.dlv-action-buttons button:last-child:hover {
    background: #059669;
}

.dlv-action-buttons button:last-child:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error Message */
.dlv-payment-error {
    color: red;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    display: none;
}

/* Animation */
@keyframes dlvSlideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* expences css */

.exp-card{
    background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        margin-bottom: 25px;
        transition: transform 0.2s;
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 10px;
        height: auto;
}

.exp-form-group{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.exp-card input, .exp-card select{
    width: 100%;
    height: 32px;
    border-radius: 5px;
    border: 1px solid #ddd;

}

.exp-card textarea{
    width: 100%;
    height: 100px;
    border-radius: 5px;
    border: 1px solid #ddd;
}


/* forgot password css */

.forpas-container{
    width:400px;
    background:var(--bg);
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
    overflow:hidden;
  }
  .forpas-header{
    background:var(--primary);
    color:#fff;
    padding:20px;
    text-align:center;
  }
  .forpas-header img{
    width:50px;
    height:50px;
    margin-bottom:10px;
  }
  .forpas-header h1{
    margin:0;
    font-size:20px;
  }
  .forpas-body{
    padding:20px;
  }
  .forpas-step-title{
    font-weight:600;
    margin-bottom:10px;
    color:var(--primary);
  }
  .forpas-input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:14px;
  }
  .forpas-btn{
    width:100%;
    padding:12px;
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
  }
  .forpas-muted{
    font-size:13px;
    color:#666;
    margin-top:8px;
    text-align:center;
  }
  
  /*expence page css*/
  
  
/* ----------------- Card Styling ----------------- */
.dexp-filter-card, .dexp-transaction-card, .dexp-expense-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 15px auto;
}
.dexp-time-filters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.dexp-time-filter-btn {
    padding: 8px; border-radius: 8px; border: 1px solid transparent;
    font-size: 14px; cursor: pointer;
    background: #f9fafb; color: #374151;
    transition: all 0.2s;
}
.dexp-time-filter-btn:hover { background: #e0e7ff; }
.dexp-time-filter-btn.dexp-active { background: #4f46e5; color:#fff; font-weight:600; box-shadow:0 2px 4px rgba(0,0,0,0.1); }
.dexp-custom-date { margin-top: 12px; padding-top: 10px; border-top: 1px solid #e5e7eb; display: none; }
.dexp-date-inputs { display: flex; gap: 10px; }
.dexp-date-inputs div { flex:1; }
.dexp-date-inputs label { font-size:11px; color:#6b7280; margin-bottom:4px; display:block; }
.dexp-date-inputs input { width:100%; padding:6px; border:1px solid #d1d5db; border-radius:6px; font-size:14px; }
.dexp-custom-btn { margin-top:10px; width:100%; background:#4f46e5; color:#fff; border:none; padding:8px; border-radius:8px; font-weight:600; cursor:pointer; transition:background 0.2s; }
.dexp-custom-btn:hover { background:#4338ca; }
.dexp-expense-card { background:#fef2f2; border-left:4px solid #ef4444; }
.dexp-expense-title { font-size:14px; font-weight:500; color:#b91c1c; }
.dexp-expense-amount { font-size:26px; font-weight:700; color:#7f1d1d; margin-top:5px; }
.dexp-expense-note { font-size:12px; color:#dc2626; margin-top:3px; }
.dexp-filter-tabs { display:flex; gap:8px; margin-bottom:10px; }
.dexp-filter-tab { padding:6px 10px; font-size:13px; border:1px solid #d1d5db; border-radius:6px; cursor:pointer; background:#f9fafb; color:#374151; transition: all 0.2s; }
.dexp-filter-tab.dexp-active { background:#4f46e5; color:#fff; font-weight:600; border-color:#4f46e5; }
.dexp-filter-tags { display:flex; flex-wrap:wrap; gap:6px; }
.dexp-filter-tag { padding:6px 10px; font-size:12px; border-radius:6px; background:#f3f4f6; cursor:pointer; transition: all 0.2s; }
.dexp-filter-tag.dexp-active { background:#e0e7ff; color:#4338ca; font-weight:600; }
.dexp-transaction-card h2 { font-size:14px; font-weight:600; color:#6b7280; margin-bottom:10px; }
.dexp-transaction-item { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid #e5e7eb; }
.dexp-transaction-left { display:flex; align-items:center; gap:10px; }
.dexp-transaction-icon { padding:8px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.dexp-transaction-details p { margin:0; font-size:13px; }
.dexp-transaction-name { font-weight:600; color:#374151; }
.dexp-transaction-category { color:#6b7280; font-size:11px; }
.dexp-transaction-right p { margin:0; text-align:right; font-size:13px; }
.dexp-transaction-amount { font-weight:600; color:#ef4444; }
.dexp-transaction-date { color:#6b7280; font-size:11px; }
.dexp-footer { position:fixed; bottom:0; left:0; width:100%; padding:10px 0; background:#fff; box-shadow:0 -2px 6px rgba(0,0,0,0.1); z-index:100; }
.dexp-footer-container { max-width:500px; margin:0 auto; position:relative; }
.dexp-add-btn { position:absolute; bottom:0; left:50%; transform:translateX(-50%) translateY(-50%); width:60px; height:60px; background:#4f46e5; color:#fff; border-radius:50%; border:none; font-size:28px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(0,0,0,0.2); cursor:pointer; transition:background 0.2s, transform 0.2s; }
.dexp-add-btn:hover { background:#4338ca; transform:translateX(-50%) translateY(-55%); }



/* attandance css */

/* Toggle button strip */
#attan-view-toggle {
    display: flex;
    width: 100%;
    background: #00467a;
    border-radius: 12px;
    padding: 2px;
    margin-bottom: 10px;
}
#attan-view-toggle button {
    flex: 1;
    padding: 8px 0;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}
#attan-view-toggle button.active {
    background: #91c63f;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Employee list card */
.attan-employee-card {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}
.attan-employee-card:hover {
    background: #91c63f;
    color: #fff;
}
.attan-employee-card p {
    margin: 4px 0;
    font-size: 0.9rem;
}

/* Calendar */
.attan-calendar {
    width: 100%;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #00467a;
    margin-top: 12px;
}
.attan-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}
.attan-day-name {
    font-weight: 700;
    color: #00467a;
    text-align: center;
    font-size: 0.75rem;
}
.attan-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 45px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}
.attan-cell.today {
    border: 2px solid #91c63f;
    box-shadow: 0 2px 6px rgba(145,198,63,0.5);
}
.attan-cell-date { font-size: 0.75rem; color: #00467a; }
.attan-cell-status { font-size: 0.85rem; font-weight: 700; }

/* Attendance status colors */
.attan-status-F { background: #91c63f; color: #fff; }
.attan-status-H { background: #ffeaa7; color: #00467a; }
.attan-status-A { background: #ffb4b4; color: #00467a; }
.attan-status-\? { background: #f3f4f6; color: #9ca3af; }

/* Legend */
.attan-legend {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    background: #00467a;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-top: 12px;
}
.attan-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.attan-legend .attan-block {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    font-size: 0.75rem;
    line-height: 20px;
}

/* Daily card */
.attan-daily-card {
    width: 100%;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #00467a;
    margin-bottom: 10px;
}
.attan-daily-card p {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #00467a;
}
.attan-mark-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin-right: 6px;
    font-size: 0.85rem;
    transition: 0.2s;
}
.attan-mark-btn.green { background: #91c63f; }
.attan-mark-btn.green:hover { background: #6fa12d; }
.attan-mark-btn.yellow { background: #ffeaa7; color: #00467a; }
.attan-mark-btn.yellow:hover { background: #fcd34d; color: #00467a; }
.attan-mark-btn.red { background: #dc2626; }
.attan-mark-btn.red:hover { background: #b91c1c; }

/* Message box */
#attan-message-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    transition: 0.3s;
    background: #00467a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    z-index: 999;
}
#attan-message-box.show {
    transform: translateX(-50%) translateY(0);
}

/* Content container */
#attan-content-container {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}


/* drop pickup report css */

#dp-rp-footer {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #ddd;
    height: 50px;
}

/* Tabs default (inactive) */
#pickup-tab,
#drop-tab {
    flex: 1;
    padding: 12px 0;
    cursor: pointer;
    border: none;
    background: #fff; /* inactive background */
    color: #000;       /* inactive text */
    font-weight: 500;
    border-right: 1px solid #ddd;
    transition: all 0.3s ease;
    height: 100%;
}

#drop-tab {
    border-right: none; /* Remove right border for last tab */
}

/* Active state */
#pickup-tab.active,
#drop-tab.active {
    background: #91c63f; /* active background */
    color: #fff;          /* active text */
}

/* Hover effect on inactive tabs */
#pickup-tab:hover:not(.active),
#drop-tab:hover:not(.active) {
    background: #00467a;
    color: #fff;
}

#pickupContent, #dropContent{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    background-color: #f4f3f2;
}

.pick-rpt-card{
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-color: #91c63f;
    display: flex;
    justify-content: end;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);

}

.pick-rpt-inner-cont{
    width: 99%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.pick-rpt-card-details{
    width: 70%;
    height: 100%;
    display: flex;
    padding: 5px;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
    .pick-rpt-card-details2{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30%;
        height: 100%;
    }

    .pick-rpt-card-details strong{
        font-weight: 600 !important;
    }

    .dlv-rpt-payment-cont {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;         /* ✅ jagah na hone par next line me chale jayenge */
    justify-content: center; /* ✅ horizontally center aligned */
    align-items: center;     /* ✅ vertically center aligned */
    gap: 5px;               /* box ke beech spacing */
    background: #f4f3f2;
   
}

.dlv-rpt-pay{
    width: 120px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    background-color: #10b981;
}

.py-txt{
    font-size: 1rem;

}

.py-amt{
    font-size: 1.2rem;
    font-weight: 600;
}

/* Floating Button */
.dlv-rpt-flt-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background-color: #91c63f;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Modal */
.dlv-rpt-flt-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.dlv-rpt-flt-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: auto;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.dlv-rpt-flt-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.dlv-rpt-flt-title {
    text-align: center;
    color: #00467a;
    margin-bottom: 15px;
}

.dlv-rpt-flt-field {
    margin-bottom: 15px;
}

.dlv-rpt-input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.dlv-rpt-apply-btn {
    width: 100%;
    background-color: #00467a;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}


}
