﻿/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(220, 68%, 54%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(220, 48%, 28%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(220, 100%, 99%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    /*website*/
    --banaerbackround: #ffff;
    --shadowlight: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    --color-white: #ffff;
    --color-Black: #0a0a0a;
    --color-green: #228f26;
    --color-gray: #6b6d6e;
    --color-loginright: #FFFF00;
    --color-loginleft: #89d915;
    --color-Dashbord: rgb(205, 245, 62);
    --color-loginfocus: #f0940c;
    --color-footer: #000;
    --color-footer_font: #ffff;
    --color-footer_p: rgb(205, 245, 62);
    --color-Grediant-Blue: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(21,55,200,1) 18%, rgba(20,125,209,1) 41%, rgba(110,107,214,1) 55%, rgba(110,143,195,1) 68%, rgba(11,4,47,1) 84%, rgba(63,32,223,1) 94%);
    /*table colco*/
    --tbl_thcolor: #7B6FBC;
    --tbl_evencolor: #fae25d;
    --tbl_searchbtnall: rgb(204, 169, 12);
    --tbl_searchbtnallhover: rgb(87, 5, 155);
    --tbl_addnewbtn: #9acd32;
    --tbl_addnewbtnhover: #493470;
    --tbl_bordercolor: #0000;
    --tblcontainermaxwith: 1850px;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
 
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container__navber {
    max-width: 1118px;
    margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.navheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
    background-color: var(--body-color);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.usingloginname {
    position: absolute;
    top:35%;
    right: 5%;
    font-weight:600;
}
    .usingloginname .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }
    .usingloginname .tooltiptext {
        visibility: hidden;
        width: 50px;
        background-color: black;
        color: #fff;
        font-size: 10px;
        text-align: center;
        border-radius: 6px;
        padding: 5px 5px;
        /* Position the tooltip */
        position: absolute;
        left: -50px;
        z-index: 1;
        transition: 0.5s ease-in-out;
    }

    .usingloginname:hover .tooltiptext {
        visibility: visible;
        background-color: var( --color-green);
    }
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.3s;
}

    .nav__logo i {
        font-size: 1.25rem;
    }

    .nav__logo:hover {
        color: var(--first-color);
    }

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu, .nav__toggle-close {
    font-size: 1.25rem;
    color: var(--title-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu {
        background-color: var(--body-color);
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        padding-block: 1.5rem 4rem;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

        .nav__menu::-webkit-scrollbar {
            width: 0.5rem;
        }

        .nav__menu::-webkit-scrollbar-thumb {
            background-color: hsl(220, 12%, 70%);
        }
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

    .nav__link:hover {
        background-color: var(--first-color-lighten);
    }

/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__content, .dropdown__group, .dropdown__list {
    display: grid;
}

.dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s;
}

.dropdown__content {
    row-gap: 1.75rem;
}

.dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
}

    .dropdown__group:first-child {
        margin-top: 1.25rem;
    }

    .dropdown__group:last-child {
        margin-bottom: 1.25rem;
    }

.dropdown__icon i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.dropdown__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.dropdown__list {
    row-gap: 0.25rem;
}

.dropdown__link {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: color 0.3s;
}

    .dropdown__link:hover {
        color: var(--title-color);
    }

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
    .dropdown__group {
        padding-left: 1.5rem;
    }
}
/* For large devices */
@media screen and (min-width: 1118px) {
    /* Nav */
    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        display: flex;
        column-gap: 3rem;
        height: 100%;
    }

    .nav li {
        display: flex;
    }

    .nav__link {
        padding: 0;
    }

        .nav__link:hover {
            background-color: initial;
        }
    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
        pointer-events: none;
    }

    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        background-color: var(--body-color);
        box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 6rem;
        max-width: 1120px;
        margin-inline: auto;
    }

    .dropdown__group {
        padding: 4rem 0;
        align-content: baseline;
        row-gap: 1.25rem;
    }

        .dropdown__group:first-child, .dropdown__group:last-child {
            margin: 0;
        }

    .dropdown__list {
        row-gap: 0.75rem;
    }

    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }

        .dropdown__icon i {
            font-size: 2rem;
        }

    .dropdown__title {
        font-size: var(--normal-font-size);
    }

    .dropdown__link {
        font-size: var(--small-font-size);
    }

        .dropdown__link:hover {
            color: var(--first-color);
        }

    .dropdown__item {
        cursor: pointer;
    }

        .dropdown__item:hover .dropdown__arrow {
            transform: rotate(180deg);
        }

        .dropdown__item:hover > .dropdown__container {
            top: 5.5rem;
            opacity: 1;
            pointer-events: initial;
            cursor: initial;
        }
}

@media screen and (min-width: 1152px) {
    .container {
        margin-inline: auto;
    }
}


/*homepage*/
.wdbsection {
    margin-top: 70px;
}

.webcontainer {
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 10px;
    padding-bottom: 70px;
    background: linear-gradient(90deg, hsla(59, 86%, 68%, 1) 0%, hsla(134, 36%, 53%, 1) 100%);
    color: var(--color-green);
}

.rwo {
    display: flex;
    align-items: center;
    max-width: 1118px;
    margin: 10px auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

.Collec_2 {
    flex-basis: 50%;
    min-width: 280px;
}

    .Collec_2 img {
        max-width: 100%;
        padding: 50px 0;
    }

    .Collec_2 h1 {
        font-size: 50px;
        font-weight: 500;
        margin: 20px 0;
    }

.web_btn {
    text-decoration: none;
}

.Collec_2 .web_btn {
    display: inline-block;
    background-color: #d3461c;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: 0.8s;
}

    .Collec_2 .web_btn:hover {
        background: #563434;
    }

.small_container {
    max-width: 1118px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.titel {
    text-align: center;
    margin: 80px auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

    .titel::after {
        content: '';
        background-color: #ff523b;
        width: 80px;
        height: 5px;
        border-radius: 5px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-15px);
    }

.collec_4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

    .collec_4 img {
        width: 100%;
    }

.titel {
    text-align: center;
    margin: 0 auto 20px;
    position: relative;
    line-height: 60px;
    color: #555;
}

    .titel::after {
        content: '';
        background-color: #ff523b;
        width: 280px;
        height: 5px;
        border-radius: 5px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

h4 {
    color: #555;
    font-weight: normal;
}

.collec_4 p {
    font-size: 14px;
}

.rating i {
    color: red;
}

.collec_4:hover {
    transform: translateY(-5px);
}

.brand {
    margin: 100px auto;
}

.collec_5 {
    width: 160px;
}

    .collec_5 img {
        width: 100%;
        cursor: pointer;
        filter: grayscale(100%);
        transition: filter 0.5s;
    }

        .collec_5 img:hover {
            filter: grayscale(0);
        }

.categoryweb {
    margin: 70px 0;
}

.collec_3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

    .collec_3 img {
        width: 100%;
    }

.footer {
    background:var(--color-footer);
    color:#fff;
    font-size: 14px;
    padding: 30px 0 10px;
}
.footerwebcontainer {
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    background: var(--color-footer);
    color: #fff;
}

.footerrwo {
    display: flex;
    align-items: center;
    max-width: 1118px;
    margin: 10px auto;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer p {
    color: var(--color-footer_p);
}

.foooter h3 {
    color: #fff;
    margin-bottom: 20px;
}

.foooterCol1, .foooterCol2, .foooterCol3, .foooterCol4 {
    min-width: 250px;
    margin-bottom: 20px;
}

.foooterCol1 {
    flex-basis: 30%;
}

.foooterCol2 {
    flex: 1;
    text-align: center;
}

    .foooterCol2 img {
        width: 180px;
        margin-bottom: 20px;
    }

.foooterCol3, .foooterCol4 {
    flex-basis: 12%;
    text-align: center;
}

ul {
    list-style-type: none;
}

.applogo {
    margin-top: 20px;
}

    .applogo img {
        max-width: 140px;
    }

.foooter hr {
    border: none;
    background: #fff;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
}


/*This Part form loginform*/
.Page_topMain {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mainlogindiv {
    background-color: var(--color-white);
    /* height: 100vh;*/

    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}

.container_Login {
    margin-top:40px;
    display: flex;
    width: 600px;
    border: 2px solid rebeccapurple;
    box-sizing: border-box;
    box-shadow: var(--shadow);
}

    .container_Login > .regcol {
        border: 1px solid black;
    }

.lognbox_left {
    width: 33%;
    background-color: var(--color-loginleft);
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

    .lognbox_left h2 {
        color: var(--color-Black);
        line-height: 50px;
        margin-top: 20%;
    }

    .lognbox_left p {
        font-size: 14PX;
        text-align: center;
        line-height: 10px;
        color: var(--color-Black);
    }


.login_button {
    background-color: transparent;
    color: var(--color-Black);
    box-shadow: var(--shadow);
    padding: 6px 25px;
    font-weight: 200;
    font-size: 12px;
    position: absolute;
    top: 75%;
}

    .login_button:hover {
        background-color: var(--color-loginright);
        color: var(--color-Black);
    }

.model_msg {
    font-size: 12px;
    padding: 10px;
    text-align: center;
    position: absolute;
    top: 55%;
    color: black;
}

.text-field_acount span {
    font-size: 10px !important;
    color: red;
    padding: 0px;
    margin: 0px;
}

.lognbox_right {
    width: 67%;
    background-color: var(--color-loginright);
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .lognbox_right h2 {
        margin: 20px;
        color: black;
    }

    .lognbox_right .loginform_form {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

.text-field {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 5px 5px;
    margin-bottom: 5px;
    margin-left: 15%;
    height: auto;
}

.text-field_acount {
    position: relative;
    box-sizing: border-box;
    width: auto;
    padding: 5px 3px;
}


.text-base_account {
    margin-bottom: 3px;
    height: 35px;
    padding: 3px 5px;
    border: 1px solid black;
    border-radius: 5px;
    transition: all .3s;
    width: 97%;
    background-color: transparent;
    font-size: 16px;
}

    .text-base_account:focus {
        border: 1px solid Var(--color-loginfocus);
        outline: 0;
    }



.text-field_acount input,
.text-field_acount textarea {
    display: inline-block;
    padding: 5px;
}

.text-field_acount #inputspan_acount {
    color: var(--color-Black);
    position: absolute;
    pointer-events: none;
    background-color: transparent;
    left: 5%;
    top: 20%;
    transition: 0.3s;
}

.text-field_acount input:focus + #inputspan_acount,
.text-field_acount input:not(:placeholder-shown) + #inputspan_acount,
.text-field_acount textarea:focus + #inputspan_acount,
.text-field_acount textarea:not(:placeholder-shown) + #inputspan_acount {
    top: -10%;
    left: 10px;
    font-size: 16px;
    background-color: var(--color-loginright);
    padding: 0 5px 0 5px;
    color: var(--color-Black);
}

.text-field_acount input:focus:invalid + #inputspan_acount,
.text-field_acount input:not(:placeholder-shown):invalid + #inputspan_acount,
.text-field_acount textarea:focus:invalid + #inputspan_acount,
.text-field_acount textarea:not(:placeholder-shown):invalid + #inputspan_acount {
    color: var(--color-Black);
}

.selectcontener {
   width:95%;
   margin-left:25px ;
}



.form_selectitem {
    
  
    font-size: 14px;
    font-weight: 200;
  margin-bottom:5px;
    border-radius: 5px;
    padding: 5px;
    color: black;
    background-color: transparent !important;
}

    .form_selectitem > option {
        background-color: transparent !important;
        color: black;
    }


.sellselectitem {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 5px;
    width:230px;
    border-radius: 5px;
    padding: 5px;
    color: black;
    background-color: transparent !important;
}

    .sellselectitem > option {
        background-color: transparent !important;
        color: black;
    }
.logn_button {
    background-color: transparent;
    color: var(--color-Black);
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    height: 35px;
    border-radius: 5px;
    margin-top: 20px;
}

    .logn_button:hover {
        background-color: var(--color-loginleft);
        color: black;
    }

.atagbuttondiv {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 20px;
    margin-bottom: 30px;
}

.abuton {
    color: rgb(7, 6, 6);
    padding: 2px;
    cursor: pointer;
    font-size: 12px;
}

    .abuton:hover {
        color: red;
    }

.selectitemdiv {
    width: auto;
    padding: 0px 4px;
}

.select_field {
    background-color: transparent;
    border-radius: 5px;
    color: black;
    margin-bottom: 5px;
    padding: 8px;
    font-size: 12px;
}

    .select_field > Option {
        font-size: 14px;
    }


@media(max-width:700px) {
    .collec_4 {
      
        padding: 5px;
       
        margin-bottom: 5px;
      
    }
    .mainlogindiv {
        height: auto;
        padding: 0px 0px;
        margin: 0px 0px;
    }

    .container_Login {
        display: flex;
        flex-wrap: wrap;
    }



    .lognbox_left {
        width: 100%;
        height: 150px;
    }

    .lognbox_right {
        height: auto;
        width: 100%;
    }

    .lognbox_left h2 {
        line-height: 0px;
        margin-top: 30px;
    }

    .lognbox_left p {
        margin-top: 10px;
        padding: 10px;
    }


    .login_button {
        padding: 2px 20px;
    }

    .model_msg {
        font-size: 15px;
        padding: 0px;
    }
}

/*This part modal*/

.image_box {
    width: 120px;
    height: 120px;
    /*border:1px solid green;*/

    margin-bottom: 20px;
    position: relative;
    box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    top: 0px;
    left: 25%;
    justify-content: center;
    align-items: end;
}

    .image_box label {
        font-size: 10px;
        position: absolute;
        cursor: pointer;
        color: darkblue;
        bottom:0;
    }

    .image_box img {
        position: absolute;
        top: 5px;
        left: auto;
        cursor: pointer;
        width: 100px;
        height: 100px;
    }

.radio_main {
    width: 100%;
    display: flex;
    padding: 0px 0px;
    /*border:1px solid red;*/
    margin-left: 0px;
    position: relative;
   
    margin-bottom: 10px;
}

.radio-item [type="radio"] {
    display: none;
}

.radio-item {
    border: 1px solid black;
    border-radius: 5px;
    height: auto;
    width: 49%;
    margin: 0px 2px;
}

    .radio-item label {
        display: block;
        padding: 2px 48px;
        background: transparent;
        border: 0px solid rgba(240, 17, 17, 0.1);
        border-radius: 5px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 200;
        min-width: auto;
        white-space: nowrap;
        position: relative;
        transition: 0.4s ease-in-out 0s;
    }

        .radio-item label:after,
        .radio-item label:before {
            content: "";
            position: absolute;
            border-radius: 50%;
        }

        .radio-item label:after {
            height: 13px;
            width: 13px;
            border: 1px solid black;
            left: 19px;
            top: calc(50% - 7px);
        }

        .radio-item label:before {
            background: #ffff;
            height: 13px;
            width: 13px;
            left: 19px;
            top: calc(50% - 7px);
            transform: scale(5);
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease-in-out 0s;
        }

    .radio-item [type="radio"]:checked ~ label {
        background-color: black;
        color: wheat;
        border-radius: 5px;
    }

        .radio-item [type="radio"]:checked ~ label::before {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

/*This part singal table*/

.tbl_continer {
    max-width: var(--tblcontainermaxwith);
    margin: 100px auto;
    border-collapse: collapse;
}
.doubletablcontiner {
    display: flex;
    
    gap: 10px;
    margin-top:20px;
}

.tbl_double_1 {
   
    flex: 1;
    padding: 5px;
    border:1px solid black;
}

.tbl_double_2 {
    flex: 2;
    border: 1px solid black;
    padding: 5px;
}

.tbl_headingh {
    text-align: center;
    line-height: 40px;
    font-size:14px;
}

.tbl_buttondiv {
    display: flex;
    margin-top:60px;
    justify-content:space-between;
    flex-wrap: wrap;
    gap:5px;
}

.tbl_col2 {
    min-width: 100px;
   
}


.tbl_finddiv {
    display: flex;
    flex-wrap: wrap;
    gap:5px;
    
    align-content: center;
 
}

.tbl_findcol2 {
    min-width: 100px;
   
}
.tbl_findcol4 {
    margin-bottom: 5px;
    min-width: 100px;
}

.datespanplacediv {
    position: relative;
}

.input_date {
    border-radius: 5px;
    font-size: 10px;
   width:200px;
    padding: 5px 5px;
  
}

.inputdate_placeholder {
    position: absolute;
    font-size: 10px;
    top: 25%;
    right: 25%;
    height: 20px;
    color: var(--color-Black);
}

.doubletbl_btn {
    display: inline-block;
    background: var(--tbl_searchbtnall);
    color: var(--color-white);
    padding: 2px 50px;
    border-radius: 5px;
    transition: 0.8s;
   
}

    .doubletbl_btn:hover {
        background: var(--tbl_searchbtnallhover);
        color: var(--color-white);
    }
.searchbtn {
    display: inline-block;
    background: var(--tbl_searchbtnall);
    color: var(--color-white);
    padding: 5px 80px;
    min-width:120px;
    margin: 5px 5px;
    border-radius: 5px;
    transition: background 0.5s;
    text-align:center;
}

    .searchbtn:hover {
        background: var(--tbl_searchbtnallhover);
        color:var(--color-white)
    }

.btn_addnew {
    display: inline-block;
    background: var( --tbl_addnewbtn);
    color: var(--color-white);
    padding: 6px 40px;
    margin: 0px 5px;
    border-radius: 5px;
    box-shadow: var(--shadowlight);
    transition: background 0.5s;
    text-decoration: none;
    min-width:100px;
}

    .btn_addnew:hover {
        background: var(--tbl_addnewbtnhover);
    }

/*this part end table search and button*/
/*This's table singel part start*/

.singltbl {
    width: 100%;
    border-collapse: collapse;
  
}

    .singltbl thead, .singltbl td, .singltbl th {
        padding: 5px 5px;
        border: 1px solid black;
        text-align: center;
    }
    .singltbl td img{
        width:20px;
height:20px;
    }

    .singltbl th {
        background-color: var(--tbl_thcolor);
        color: var(--color-white);
    }

    .singltbl tbody tr:nth-child(even) {
        background-color: var(--tbl_evencolor);
    }
    /*double table */

@media(max-width:700px) {
    .singltbl thead {
        display: none;
    }
    .doubletablcontiner {
        flex-direction: column;
    }

    .tbl_findcol4 {
        margin-bottom: 0px;
    }

    .singltbl, .singltbl tbody, .singltbl td, .singltbl tr {
        display: block;
    }

        .singltbl tr {
            margin-bottom: 5px;
        }
        .singltbl tr, .singltbl td {
            margin-bottom: 5px;
            overflow-wrap: break-word;
        }
        .singltbl td {
            text-align: right;
            padding-left: 50%;
            position: relative;
        }

            .singltbl td::before {
                content: attr(date-lable);
                position: absolute;
                left: 0;
                width: 50%;
                overflow-wrap: break-word;
                padding-left: 15px;
                font-weight: bold;
                font-size: 15px;
                text-align: left;
            }
    .tbl_continer {
        margin: 50px auto;
    }

    .singltbl tfoot {
        display: flex;
        flex-direction:column;
      
      color:red;
      font-weight:600;
    
    }
      }
/*This's table Pagenation part Start*/
/*This's table Spoorder part start*/

.Spoorder {
    width: 100%;
    border-collapse: collapse;
}

    .Spoorder thead, .Spoorder td, .Spoorder th {
        padding: 5px 15px;
        border: 1px solid black;
        text-align: center;
    }

        .Spoorder td img {
            width: 80px;
            height: 80px;
        }

    .Spoorder th {
        background-color: var(--tbl_thcolor);
        color: var(--color-white);
    }

    .Spoorder tbody tr:nth-child(even) {
        background-color: var( --color-loginright);
    }


@media(max-width:700px) {
    .Spoorder thead {
        display: none;
    }

  

    .Spoorder, .Spoorder tbody, .Spoorder td, .Spoorder tr {
        display: block;
        font-size:16px;
    }

        .Spoorder tr {
            margin-bottom: 2px;
            font-size: 16px;
        }

        .Spoorder tr, .Spoorder td {
            margin-bottom: 2px;
            overflow-wrap: break-word;
        }

        .Spoorder td {
            text-align: center;
            padding-left: 5%;
            position: relative;
        }

            .Spoorder td::before {
                content: attr(date-lable);
                position: absolute;
                left: 0px;
                width: 50%;
                padding-left: 15px;
                font-weight: bold;
                font-size: 14px;
                text-align: left;
            }

    .tbl_continer {
        margin: 50px auto;
    }

    .Spoorder tfoot {
        display: flex;
        flex-direction: column;
        color: red;
        font-weight: 600;
    }
    .Spoorder td img {
        width: 80px;
        height: 80px;
      
    }


}
/*This's table Pagenation part Start*/

#pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    padding: 5px;
    height: 40px;
    background-color: transparent;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 10px;
}

    #pagination a {
        color: black;
        float: left;
        padding: 2px 2px;
        margin: 3px;
        text-decoration: none;
        cursor: pointer;
        font-size: 12px;
    }

        #pagination a.active {
            border-radius: 50%;
            background-color: #4c4a4a;
            color: whitesmoke;
        }

#pageNumbersContainer {
    display: flex;
    flex-wrap: wrap;
}

#pageNumbers {
    display: flex;
    padding: 2px;
    font-size: 10px;
}

#pageNumberInput {
    width: 40px;
    height: 25px;
    border: 1px solid lightgray;
    text-align: center;
    margin: 5px;
    border-radius: 5px;
    outline: none;
}

    #pageNumberInput::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

#goToPage {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 10px;
}

    #goToPage button {
        height: 25px;
        padding: 5px;
        align-items: center;
        font-weight: bold;
        border: none;
        border-radius: 4px;
        background-color: #4c4a4a;
        color: whitesmoke;
        cursor: pointer;
    }

#entriesDisplayDiv {
    display: flex;
    padding-left: 25px;
    font-size: 10px;
}

    #entriesDisplayDiv span {
        margin-left: 5px;
        margin-right: 5px;
    }
/*This's table Pagenation part End*/
/*This's modal form place holder start*/

#my_form {
   /* background-color: #ffff;
    width: 85%;
    justify-items: center;*/
}

.text-field {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 5px 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    height: auto;
}

.text-base {
    margin: 0;
    height: auto;
    padding: 15px 15px;
    border: 1px solid black;
    border-radius: 5px;
    transition: all .3s;
    width: 100%;
    background-color: transparent;
    font-size: 12px;
}

    .text-base:focus {
        border: 1px solid #0074d9;
        outline: 0;
    }



.text-field input,
.text-field textarea {
    display: inline-block;
    padding: 5px;
}

.text-field #inputspan {
    color: black;
    position: absolute;
    pointer-events: none;
    background-color: transparent;
    left: 5%;
    top: 20%;
    font-size: 12px;
    transition: 0.3s;
}

.text-field input:focus + #inputspan,
.text-field input:not(:placeholder-shown) + #inputspan,
.text-field textarea:focus + #inputspan,
.text-field textarea:not(:placeholder-shown) + #inputspan {
    top: -10%;
    left: 10px;
    font-size: 10px;
    background-color: #ffff;
    padding: 0 5px 0 5px;
    color: #00802b;
}

.text-field input:focus:invalid + #inputspan,
.text-field input:not(:placeholder-shown):invalid + #inputspan,
.text-field textarea:focus:invalid + #inputspan,
.text-field textarea:not(:placeholder-shown):invalid + #inputspan {
    color: #000080;
}

.mybutton {
    --c: #250; /* the color*/

    box-shadow: 0 0 0 .1em inset var(--c);
    --_g: linear-gradient(var(--c) 0 0) no-repeat;
    background: var(--_g) calc(var(--_p,0%) - 100%) 0%, var(--_g) calc(200% - var(--_p,0%)) 0%, var(--_g) calc(var(--_p,0%) - 100%) 100%, var(--_g) calc(200% - var(--_p,0%)) 100%;
    background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
    outline-offset: .1em;
    transition: background-size .4s, background-position 0s .4s;
}

    .mybutton:hover {
        --_p: 100%;
        transition: background-position .4s, background-size 0s;
    }

    .mybutton:active {
        box-shadow: 0 0 5em inset #0009;
        background-color: var(--c);
        color: #fff;
    }


.mybutton {
    font-family: system-ui, sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    border: none;
    width: 82%;
    position: relative;
    left: 15px;
}

/*This's modal form place holder end*/
/*This's Sale foter Cash Calcutalion*/
#list-container {
    display: flex;
    display:none;
    flex-direction: row;

    justify-content: right;
    margin-right: 0px;
}

    #list-container ul {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

        #list-container ul li {
            list-style: none;
            display: flex;
            gap: 10px;
            justify-content: space-between;
            padding: 2px
        }

            #list-container ul li input, .spanleft {
                width: 100px;
                height: 25px;
                text-align: right;
                border-radius: 5px;
                margin-left: 10px;
                font-size: 12px;
            }

.childltbl{
  min-width:400px;
  background-color:lightgoldenrodyellow;
    font:10px;
}
    .childltbl td input {
        width: 65px;
        background-color: lightgoldenrodyellow;
       
    }
    .childltbl td,   .childltbl td input {
        padding: 2px;
        text-align: right;
        font-size: 14px;
      
    }
      .productname {
            max-width:100px;
            overflow-wrap: break-word;
        }
.childltbl th{
    padding:2px 2px;
}
 .tbl_numercvalue {
    text-align: right;
}
/*Dash bord*/
.dashbordmain {
    background-color: var(--color-white);
}

.boxdiv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 20px;
}

.boxess {
    display: block;
    background-color: rgb(10, 10, 10);
    padding: 5px 5px;
    border: 2px solid rgb(182, 245, 80);
    color: #ffff;
    width: 250px;
    height: 80px;
    font-weight: 400;
    border-radius: 5px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.hedline {
    position: absolute;
    left: 10%;
    top: 1%;
    color: gray;
}

.boxesa {
    color: gray;
    cursor: pointer;
    text-decoration: underline;
    font-size: 12px;
}

    .boxesa:hover {
        color: rgb(205, 245, 62);
    }
.dashbordClander {
    font-size: 12px;
    color: black;
    border:none;
    box-shadow:var(--shadow);
   
   background-color:skyblue;
   text-align:center;
   border-radius:20px;
    
}
.amonut {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 14px;
}


.refereshdiv {
    margin: 10px 10px;
}

    .refereshdiv .dashbordClander {
        width: 150px;
        height: 20px;
        margin-left: 20px;
        background-color: transparent;
        /*  transform: translate(-50%,-50%);
             top: 50%;
             left: 50%; */
        font-family: "Roboto Mono",monospace;
        color: black;
        font-size: 18px;
        border: 0px solid green;
        outline: none;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }

.dashbordmain .dashbutton {
    padding: 8px 100px;
    margin-left: 20px;
    background-color: transparent;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.tableSingal_continer {
    padding: 5px 0px;
    margin: 40px 20px;
}

.heading {
    font-size: 30px;
    text-align: center;
    color: rgb(25, 133, 11);
    margin-bottom: 20px;
    margin-top: 0px;
    padding-top: 20px;
}

.tableSingal_continer .table {
    background-color: #ee2828;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    margin: 20px 20px;
}

.table thead tr th {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.35px;
    color: #ffff;
    opacity: 1;
    padding: 12px;
    vertical-align: top;
    border: 1px solid #dee2e685;
}

.table tbody tr td {
    font-size: 14px;
    letter-spacing: 0.35px;
    background-color: #010408;
    color: #ffff;
    opacity: 1;
    padding: 8px;
    text-align: center;
    border: 1px solid #dee2e685;
}



@media(max-width:700px) {
    .table tbody tr td  {
        font-size: 8px;
    }
    
    .table thead {
        display: none;
    }

    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
       
    }

        .table tr {
            margin-bottom: 15px;
        }

        .table tbody tr td {
            text-align: center;
            padding-left: 50%;
            position: relative;
           
        }

        .table td::before {
            content: attr(date-lable);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 15px;
            font-weight: 400;
            font-size: 10px;
            text-align: left;
           
        }
    
}
.addressinput {
    font-size: 15px;
    height: 30px!important;
}
@media(max-width:700px){

 
   
   /* .doubletbl_btn {
        display: block;
        padding:0px 5px;
        font-size:5px;
    }
    .input_date{
        font-size:10px;
        height:20px;
   
        margin-top:2px;
    }*/

    #myInput {
        padding: 2px 5px;
        margin-top: 0px;
        margin-left: 0px;
        border-radius: 5px;
        width: 100px;
        height: 18px;
        font-size: 8px;
    }

   /* .sellselectitem {
        width: 100px;
        height: 25px;
        font-size: 10px;
        margin: 0;
        
        padding: 0;
    }*/
    .selectcontener {
       
        margin-left: 5px;
    }
   
    .form_selectitem {
        font-size: 8px;
       
        margin-bottom: 2px;
        border-radius: 5px;
        padding: 3px 0px;
       max-width:100px;
        background-color: transparent !important;
    }
    .singltbl thead, .singltbl td, .singltbl th {
       font-size:14px;
    }
        .singltbl td::before {
           
            font-size: 14px;
            
        }

    .btn_addnew {
        padding: 3px 20px;
        margin: 0px 5px;
        font-size: 14px;
    }
    .searchbtn {
        font-size: 14px;
        padding: 2px 5px;
       
       
        transition: background 0.5s;
    }
    .select2-selection__rendered {
        line-height: 13px !important;
    }

    .select2-container .select2-selection--single {
        height: 14px !important;
    }

    .select2-selection__arrow {
        height: 14px !important;
    }
  

    .select2-results__option {
        font-size: 14px !important;
    }
    .addressinput {
        font-size: 8px;
        height: 15px;
        width: fit-content;
        margin-left:5px;
    }
}


/*This's table row numric value alegin right Strart*/
.amounttextright {
    text-align: right;
}

.txt_qty {
    background-color: transparent;
    width: 80px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid gray;
    text-align: right;
}

.txt_qtyrate {
    background-color: transparent;
    width: 80px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid gray;
    text-align: right;
}

.txt_desc {
    width: 100px;
    height: 80px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid gray;
}

/*This's table row numric value alegin right End*/


.sumvaluedata td {
    border: none;
}

#entriesDisplayDiv {
    visibility: hidden;
}

.soptablecontiner{
    margin-top:100px;
    margin-left:10px;
    margin-right:10px;
}

/* Part 1 styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.add-new-btn {
    padding: 5px 25px;
    background: var( --tbl_addnewbtn);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    white-space: nowrap;
    box-shadow: var(--shadowlight);
    transition: background 0.5s;
    min-width: 120px;
    width: 20%;
    text-align:center;
}


.add-new-btn:hover {
    background: var(--tbl_addnewbtnhover);
}
.top-bar select {
    min-width: 160px;
    width: 20%;
    padding:5px;
}
.sposercmyinput {
    padding: 5px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 100px;
    width: 20%;
    margin-left: 5px;
    font-size: 16px;
    border: 1px solid black;
}

/* Part 2 styles */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 5px;
}

    .filters select,
    .filters input
     {
        padding: 5px;
        margin: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        flex-grow: 1;
        min-width: 200px; /* Ensure inputs don't become too small */
        max-width: 350px; /* Ensure inputs don't become too small */
    }

        .filters input#custoadd[disabled] {
          
            min-width: 200px;
        }


  
    /* Part 3 styles */
    .table-container {
        overflow-x: auto; /* Makes table scrollable on smaller screens */
        position: relative;
        padding: 10px;
    }

.sporesponstable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    background-color: white;
}

    .sporesponstable th, .sporesponstable td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

.sporesponstable th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.sporesponstable img {
    width: 180px;
    height: 180px;
}
/* Hide data labels by default on desktop */
    .sporesponstable td::before {
        display: none;
    }

/* Responsive styles */
@media screen and (max-width: 490px) {
    /* Part 1: Button and search box on one line */
    * {
        font-size: 18px;
    }

    .top-bar {
        align-items: stretch;
       
    }

    .add-new-btn {
        margin-bottom: 5px;
        text-align: center;
        padding: 3px 10px;
    }

    .top-bar select {
      
        padding: 0px;
        font-size:12px;
    }

    .sporesponstable tbody tr img {
        position: relative;
        
       right:50%;
    }
    .sporesponstable img{
       
        box-shadow:var(--shadowlight);
    }
    /* Part 2: Two select lists per line, others on a new line */
    .filters {
    }

        .filters select:nth-child(1),
        .filters select:nth-child(2) {
            width: 50%;
        }

        .filters select:nth-child(3),
        .filters input {
            width: 50%;
        }

    /* Part 3: Table with data-label display */
    .sporesponstable, .sporesponstable thead, .sporesponstable tbody, .sporesponstable th, .sporesponstable td, .sporesponstable tr {
        display: block;
        
    }

        .sporesponstable thead tr {
            display: none; /* Hide the table header */
        }
        .sporesponstable thead th:last-child {

            display: table-cell; /* keep last th visible */
            background: red;
            font-weight: bold;
            text-align: center;
        }
        .sporesponstable tr {
            border: 1px solid #ccc;
            margin-bottom: 5px;
            display: block;
           
        }

        .sporesponstable td {
            border: none;
            position: relative;
            padding-left: 40%;
            text-align: right;
            display: block;
          
           
        }

            .sporesponstable td::before {
                content: attr(date-lable);
                position: absolute;
                left: 10px;
                width: 45%;
                text-align: left;
                font-weight: bold;
                display: block;
              
            }
}
.select2-selection__rendered {
    line-height: 35px !important;
}

.select2-container .select2-selection--single {
    height: 38px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}
/*.tablchebox{
    position:relative;
}
.tblChkbotton{
    position:absolute;
    right:0;
    top:5px;
}
*/

/*#myInput {
    padding: 5px 21px;
    margin-top: 0px;
    margin-left: 5px;
    border-radius: 5px;
    width: auto;
}*/



.chekamove{
    position:relative;
}
.amoving{
    position:absolute;
    right:5px;
    top:5px;

}

@media screen and (max-width: 790px) {
    .amoving {
        top: -20px;
        right: 5px;
    }
}
@media screen and (max-width: 789px) {

    .amoving {
        top: 0px;
        right: -80px;
    }
}
@media screen and (max-width: 789px) {

    .amoving {
        top: -20px;
        right: 5px;
    }
}
.spohideshobtn{
    background-color:antiquewhite;
    display:inline-block;
 position:absolute;
 right:10px;
 top:-2px;

}

/*modal popup Start*/
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    width: 320px;
}
.field {
    position: relative;
    margin-bottom: 20px;
}

.control {
    width: 100%;
    background: transparent; /* transparent background */
    outline: none;
    margin: 0;
    height: auto;
    padding: 7px 10px;
    border: 1px solid gray;
    border-radius: 5px;
    transition: all .3s;
    background-color: transparent;
    font-size: 16px;
}

.label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff; /* prevent overlap when floating */
    padding: 0 4px;
}

.field.focused .label,
.field.filled .label {
    top: 0px;
    left: 8px;
    font-size: 10px;
    color: #2563eb;
}
/*modal popup end*/
.field-validation-error {
    color: green; /* Example: make error messages red */
    font-size: 12px; /* Adjust this value as needed */
    
}

@media (max-width: 490px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}