.mainform {
    display: block;
}


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

/* Apply styles only on screens wider than 768px */
@media screen and (min-width: 769px) {
    .mainform {
    position: absolute;
    top: 20px;
    left: 20px;
    position: fixed !important;
}
}

.thelist {
    display: block;
    position: absolute;
    top: 40px;
    left: 450px;
    width: 900px;
    margin-bottom: 500px !important;
    font-size: 14px !important;
}

.thelist table {
    border-radius: 0 !important;
    margin-bottom: 500px !important;
}

.keephead {
    display: block;
    /*position: absolute;*/
    top: 0;
    width: 900px;
    position: fixed !important;
}

.keephead tr {
    display: block;
    width: 100% !important;
}

tr td {
    background-color: rgb(219, 236, 224) !important;
}

tr.blank td {
    background-color: rgb(255, 255, 255) !important;
}

tr.activeRow td {
    background-color: rgb(166, 228, 225) !important;
}

.td01 {
    width: 45px !important;
    text-align: right !important;
    padding-left: 3px !important;
    padding-right: 20px !important;
    color: rgb(161, 161, 161);
}

/*
th.td01 {
    width: 50px !important;
}*/

.td02 {
    width: 90px !important;
    max-width: 90px !important;
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.td03 {
    width: 340px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}

.td04 {
    width: 80px !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.td05 {
    width: 90px !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.td06 {
    width: 90px !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.td07 {
    /*width: 85px !important;*/
    text-align: center !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.tdmini {
    font-size: 9px !important;
    word-wrap: break-word !important;
}

/*
th.td06 {
    width: 140px !important;
}
*/

.text-green {
    color: #2b9e20;
}

#searchinfo {
    font-size: 14px;
}

tbody .highlight {
    background-color: yellow;
}

#productname {
    min-height: 50px !important;
}

/* Style all required input fields */
input:required {
    border: 1px solid rgb(47, 209, 41) !important;
    background-color: #ffffff !important;
    /* Light red background */
}

/* Style required inputs when focused */
input:required:focus {
    outline: none !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
}

#groupConfiguration,
#groupBatchNumber,
#groupSerialNumber {
    display: none;
}

.flash-green {
    animation: flash-green 1.2s ease;
}

@keyframes flash-green {
    0% {
        background-color: #3db320;
    }

    100% {
        background-color: transparent;
    }
}

td.item-number:hover {
  cursor: pointer !important;
  color:#8dc63f;
}

@media screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* Apply styles only on screens wider than 768px */
@media screen and (min-width: 769px) {
  .show-on-desktop {
    display: block; /* or whatever style you need */
  }
}