:root,
    :root.light {
        --bg-color: #fff;
        --text-color: #000;
        --bg-row:#f7f7f7
    }
    :root.dark {
        --bg-color:#333;
        --text-color: #fff;
        --bg-row:rgb(66, 66, 66);
    }


body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
}

.allRows {
    display: grid;
    margin-top: 1rem;
}
.row {
    display: grid;
    grid-template-columns: 1fr 3fr 0.2fr;
    direction: rtl;
    gap: 0rem;
    margin-bottom: 0.5rem;
    align-items: center;
    background-color:var(--bg-color);
    color: var(--text-color);
}
.row:nth-child(odd){
    background-color: var(--bg-row)
}
/* .row:nth-child(odd){
    background-color: #ffffff;
} */

/* .image {
    width: 4rem;
    height: 4rem;
    position: relative;
   animation-duration: 2s;
     animation-fill-mode: forwards;
     animation-iteration-count: infinite;
     animation-name: loading;
     animation-timing-function: linear;
     border: none;
     background: rgb(238,238,238);
     background: linear-gradient(90deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 100%);   border: none;
   }
   @keyframes loading { 0% {
       background-position: -4rem 0
     }
     100% {
       background-position: 4rem 0
     }
   
   }

   .imageSrc {
    width: 4rem;
    background-color: none;
   }
 */
.image {
    width: 4rem;
    background: url(img/logo.jpeg) no-repeat center;
}
 .partName {
    font-weight: 600;
    font-size: medium;
}
.partCode {
    font-weight: 200;
}

.inputBtnsDiv{
    border: 1px solid #b5b5b5;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    margin: 0;
    margin-right: 0.15rem;

}
.addBTN, .removeBTN {
    font-size: large;
    font-weight: 600;
    color: #6e6e6e;
    background-color: var(--bg-row);
    padding:0.2rem 0.5rem 0.2rem 0.5rem;
    touch-action: manipulation;
    text-align: center;
    margin: 0;
}

.quntity {
    width: 2rem;
    height: 2rem;
    border: none;
    border-right: 1px solid rgb(216, 216, 216);
    border-left: 1px solid rgb(216, 216, 216);
    border-radius: 0px;
    text-align: center;
    align-content: center;
    justify-content: center;
    font-size: large;
}
#remarksDiv {
    display: flex;
    border: 1px solid #eee;
    width: 80%;
    margin: auto;
    margin-top: 1rem;
}
#remarks {
    margin: auto;
    border:none;
    height: 1.5rem;
    width: 100%;
   direction: rtl;
   background:transparent;
   color: var(--text-color);
}
#remarks::placeholder{
    text-align: right;
    font-size: larger;
    font-weight: bolder;

}
#remarkImg {
    margin: 0.5rem;
}

#sendBTN {
    width: 80%;
    height: 2rem;
    margin: auto;
    margin-top: 1rem;
    background: rgb(120,183,228);
    background: linear-gradient(180deg, rgba(120,183,228,1) 0%, rgba(4,107,235,1) 100%);    font-weight: 600;
    border: none;
    border-radius: 10px;
    font-size: larger;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

#sendBTN:active{
    background-color: rgb(36, 136, 21);
}

#basketDiv {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    right:0;
    margin-left: 85%;
    text-align: center;
    z-index: 100;
    background-color:var(--bg-color);
    width: fit-content;  
}
#basketDiv p {
    margin-top:  0;
}
#tagNameParts, #tagName {
    color: var(--text-color);
}
#userNotImprove, #web{
    text-align: center;
    font-weight: 600;
    color:var(--text-color);
    display: block;
}
#web a {
    text-decoration: none;
    text-decoration: underline;
    color:var(--text-color);
}
#loading{
    text-align: center;
    font-size: large;
    font-weight: blod;
    color: var(--text-color);
}

#clientDetails{
    text-align: center;
    margin-top: -2.5rem;
    font-weight: bold;
    color:var(--text-color);
}
 #searchDiv{
  position: relative;
  top: 0;
  margin-right:1rem;
  margin-top: -2rem;

}
#searchDiv p {
    margin-top: 0;
}

#searchInput {
text-align: right;
font-size: large;
width: 5.5rem;
position: relative;
margin-top: -2rem;
}

