    /* Define the background color for pagination */
    .active>.page-link {
      background:#000;
    }
    .previous{
        /*background-color: #e30613;
        border-radius: 10px;*/
    }
    .next{
        background-color: #e30613;
        border-radius: 10px;
    }
    .btn_disable{
        background-color: #d14a53;
        color:#FFF;
    }
    .btn_disable:hover{
        background-color: #000;
        color: #FFF !important;

    }
    .btn_create{
        background-color: #e30613;
        color: #FFF !important;
    }
    .btn_create:hover{
        background-color: #000 !important;
        color: #FFF !important;
    }
    .btn_create:focus {
        background-color: #e30613;
        color: #FFF !important;
    }
    .badge-black {
        background-color:#000;
        color: white;
      }
    .badge-danger{
        background-color: #e30613;
        color: #FFF !important;
    }
    .btn-danger{
        background-color: #e30613 !important;
        color: #FFF !important;
    }
    .paginate_button.previous a,
    .paginate_button.next a {
        background-color: #e30613 !important;
        color: #FFFFFF !important;
    }
    .paginate_button.previous a:hover,
    .paginate_button.next a:hover {
        background-color: #000;
        color: #FFFF !important;
    }
    .paginate_button.previous:hover span,
    .paginate_button.next:hover span {
        color: #000 !important;
    }
    .paginate_button.previous.disabled a {
        color: #FFF !important;
    }
    .paginate_button.next.disabled a {
        color: #FFF !important;
    }
    .btn.btn-danger.btn-sm.mb-0:hover {
        background-color: #000 !important;
        color: #FFF !important;
    }
    .profile_hover:hover {
        border-radius: 13px 0px 13px 0px;
        background-color: #000 !important;
        color: #FFF !important;
    }
    .bullet-dot{
        background: #e30613 !important;
    }
     .menu-link.active{
        background: #e30613 !important;
    }
    .menu-link.active .bullet-dot {
        background: black !important;
    }
    .form-background {
        background: #000 !important;
        color: #FFF !important;
    }
    .form-background input{
        background-color: #FFF !important;
    }
    .btn_login{
        background-color: #e30613;
        color: #FFF !important;
    }
    .btn_login:hover{
        background-color: #e30613;
        color: #FFF !important;
    }
    .btn_login:focus {
        background-color: #e30613;
        color: #FFF !important;
    }
    .signin_color{
        color: #FFF !important;
    }
    .signin_color:hover{
        background-color: #000 !important;
        color: #e30613 !important;
    }
    .btn_delete:hover{
        /* background-color: #e30613; */
        color: #e30613 !important;

    }
    .delete{
        /* background-color: #000 !important; */
        color: light !important;

    }
    .delete:hover{
        color: #e30613 !important;
    }
    #header-menu-remove{
        display: none !important;
    }
    .home-background-color{
        background-color: #e30613;
    }
    /* dashboard cards  */
    .cards-body{
        background-color: #e30613 !important;
        color: #000 !important;

    }
    .li-spane-h3-white {
        color: #FFF !important;
    }
    .order-max-w-50{
        max-width: 50px;
    }
/* box create style::start */
    .selected-products-container {
        display: flex;
        flex-direction: row;
        padding: 0px 23px;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }
    .selected-product {
        display: flex;
        flex-direction: column;
        width: 250px;
        border: 1px solid #ccc;
        padding: 10px;
    }
    .selected-product img {
        width: 200px;
        height: 150px;
    }
/* box create style::ends */

/* box updated style::start*/
    .selected-products-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .selected-products-list li {
        flex-basis: calc(33.33% - 20px);
        margin: 10px;
        list-style: none;
    }
    .selected-products-list li img {
        display: block;
        margin-bottom: 5px;
    }
    .search-container{
        display: flex;
        padding-right: 20px;
        justify-content: flex-end; /* This aligns items to the right */
    }
    .search-item{
        width: 30% !important;
        margin-bottom: 20px;
        margin-top: -20px;
        border-radius: 12px;
    }
    .search-item:hover{
        background-color: rgb(255, 255, 255);
    }

    .product-name {
        display: inline-block;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

    #table-loader {
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #table-wrapper {
        animation: fadeIn 0.4s ease-in;
    }

    /* Add to Box button styling */
    .btn_add_to_box {
        background-color: #e9ecef; /* similar to Bootstrap secondary */
        color: #212529;
        font-size: 0.85rem;
        padding: 6px 14px;
        border: 1px solid #d6d8db;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        min-width: 90px;
    }

    .btn_add_to_box:hover {
        background-color: #dfe2e6; /* slightly darker gray on hover */
        color: #212529;
        border-color: #c8cbcf;
        transform: translateY(-1px);
    }

    .btn_add_to_box:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
    }

    .btn_add_to_box:disabled {
        background-color: #e9ecef !important;
        opacity: 0.65;
        cursor: not-allowed;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .btn_add_to_box {
            width: 100%;
            font-size: 0.9rem;
            padding: 10px;
            margin-top: 6px;
        }
    }

    @media (max-width: 768px) {
        .product-name {
            max-width: 120px;
        }
    }
/* box updated style::ends*/

/* media query register-form */

    @media screen and (max-width: 769px) {
        .register-logo{
            width:100px !important;
            margin-bottom: -10px;
        }
    }
    @media screen and (max-width: 999px) {
        .register-logo{
            width:200px !important;
            margin-bottom: -10px;
        }
    }
    @media screen and (min-width: 1000px) {
        .register-logo{
            width:400px !important;
            margin-bottom: -10px;
        }
    }
    /* media query forgetpassword-form */
    @media screen and (max-width: 769px) {
        .password-forget-logo{
            width:100px !important;
            margin-bottom: -25px;
        }
    }
    @media screen and (max-width: 999px) {
        .password-forget-logo{
            width:200px !important;
            margin-bottom: -25px;
        }
    }
    @media screen and (min-width: 1000px) {
        .password-forget-logo{
            width:400px !important;
            margin-bottom: -25px;
        }
    }
    /* media query login-form */
    @media screen and (max-width: 769px) {
        .login-logo{
            width:100px !important;
            margin-bottom: 20px;
        }
    }
    @media screen and (max-width: 999px) {
        .login-logo{
            width:200px !important;
            margin-bottom: 20px;
        }
    }
    @media screen and (min-width: 1000px) {
        .login-logo{
            width:400px !important;
            margin-bottom: 20px;
        }
    }
    @media (max-width: 400px) {
        .product-prev-next-btn{
            display:flex;
            flex-direction: column;
            margin: 10px 23px;
            gap:10px;
        }
    }
    @media (max-width: 425px) {
        .search-item{
        width: 55% !important;
        }
    }
    .navigationButtons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    @media (max-width: 425px) {
        .navigationButtons{
            justify-content: start;
        }
    }

    .ul-as-table .table-list {
        display: table;
        width: 100%;
        border-collapse: collapse;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ul-as-table .table-list .row {
        display: table-row;
    }

    .ul-as-table .table-list .cell {
        display: table-cell;
        padding: 8px 12px;
        border: 1px solid #ccc;
        width: auto;
    }

    .modal-custom {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1050;
        background: rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .modal-content-custom {
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        border-radius: 8px;
        width: 90%;
        max-width: 600px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .close-custom {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    #kt_sign_in_submit:disabled {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed;
    }

    .products-table td > div {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    .products-table td:nth-child(9) {
        position: relative;
        overflow: visible;
    }

    .products-table td:nth-child(9) > div {
        overflow: visible;
    }

    .products-table img {
        max-width: 80px;
    }

    .box-hover {
        position: relative;
        cursor: pointer;
        display: inline-block;
    }

    .box-name {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: #007bff;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .box-name:hover {
        color: #0056b3;
    }

    .box-name i {
        font-size: 12px;
        opacity: 0.7;
        transition: transform 0.2s;
    }

    .box-hover:hover .box-name i {
        transform: rotate(180deg);
    }

    .product-dropdown-grid {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 12px;
        border-radius: 6px;
        width: max-content;
        max-width: 300px;
        z-index: 9999;
        gap: 10px;
    }

    .box-hover:hover .product-dropdown-grid {
        display: grid;
    }

    .product-item {
        text-align: center;
        width: 80px;
    }

    .product-thumb img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #eee;
        transition: transform 0.2s;
    }

    .product-thumb img:hover {
        transform: scale(1.05);
    }

    .product-name-hover {
        font-size: 12px;
        margin-top: 4px;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        display: inline-block;
    }

    /* .table-responsive, .card-body, .card {
        overflow: visible !important;
    } */

    .card-body, .card {
        overflow: visible !important;
    }

    #nav-unread-count, #sidebar-unread-count {
        display: none;
    }

    #nav-unread-count:not(:empty), #sidebar-unread-count:not(:empty) {
        display: inline;
    }

    .notification-item.unread {
        font-weight: 600;
        background-color: #f3f6f9;
    }

    .notification-item.unread:hover {
        background-color: #e9edf2;
    }

    .notification-item {
        display: block;
        padding: 10px 12px;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
    }

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

    .changes-table td {
        vertical-align: middle;
    }

    .sidebar {
        min-height: 100vh;
        background: #343a40;
    }

    .sidebar .nav-link {
        color: #adb5bd;
        padding: 0.75rem 1rem;
    }

    .sidebar .nav-link.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .sidebar .nav-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    .stat-card {
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .badge-fraud {
        background: #dc3545;
    }

    .badge-valid {
        background: #28a745;
    }

    .badge-pending {
        background: #ffc107;
    }

    .badge-approved {
        background: #17a2b8;
    }

    .badge-paid {
        background: #28a745;
    }

    .badge-rejected {
        background: #6c757d;
    }

    .select2-container--bootstrap-5 .select2-selection {
        min-height: 38px;
        padding: 5px;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 8px;
    }

    .referral-card .card .card-header {
        min-height: auto;
        padding: 1rem;
    }

    @media (min-width: 1200px) {
        .modal-xl {
            max-width: 90%;
        }
    }
