* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
}
       
        table {
            font-size: 1.2rem;
            border-collapse: collapse;
            width: 100%;
            text-align: center;
            padding: 15px;
            background-color: #1E1E1E;
        }
        
        tr {
            font-weight: 900;
            color: #FFFFFF;
        }
        
        tr:hover {
            background-color: #676767;
        }
        
        
        #myInput {
            background-color: #1E1E1E;
            color: #FFFFFF;
        }

        h1, h3, h4 {
            color: #FFFFFF;
        }
        .who {
            display: flex;
            justify-content: center;
        }
        
        .table-scroll {
          max-height: 620px;
          overflow: auto;
          border-radius: 16px;
          border: 1px solid rgba(255,255,255,.07);
          background: #030604;
        }
        
        .table-scroll::-webkit-scrollbar {
          height: 12px;
          width: 12px;
        }
    
        .table-scroll::-webkit-scrollbar-track {
          background: #030604;
        }
    
        .table-scroll::-webkit-scrollbar-thumb {
          background: #12351f;
          border-radius: 999px;
          border: 3px solid #0b0f14;
        }
    
        .table-scroll::-webkit-scrollbar-thumb:hover {
          background: #1f7a3a;
        }
        

        
        .table-shell {
          width: auto;
          margin: 0 auto;
          background: rgba(5, 10, 7, 0.94);
          backdrop-filter: blur(18px);
          border: 1px solid rgba(255,255,255,.08);
          border-radius: 22px;
          padding: 16px;
          /*box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 45px rgba(34,197,94,.08);*/
          overflow: hidden;
          position: relative;
        }
        
        .mega-table {
          width: max-content;
          min-width: 100%;
          border-collapse: separate;
          border-spacing: 0;
          font-size: 13px;
        }
        
        .mega-table th {
          position: sticky;
          top: 0;
          z-index: 5;
          /*background: linear-gradient(180deg, #0b1f12, #07110b);*/
          background-color: black;
          /*color: #93a4b8;*/
          color: #FFFFFF;
          text-transform: uppercase;
          letter-spacing: .06em;
          font-size: 11px;
          padding: 13px 16px;
          border-bottom: 1px solid rgba(255,255,255,.1);
          white-space: nowrap;
          text-align: left;
        }
    
        .mega-table td {
          padding: 12px 16px;
          border-bottom: 1px solid rgba(255,255,255,.055);
          white-space: nowrap;
          color: #dbe3ec;
          background: rgba(255,255,255,.006);
        }
    
        .mega-table tbody tr:nth-child(even) td {
          background: rgba(255,255,255,.025);
        }
    
        .mega-table tbody tr:hover td {
          background: rgba(34, 197, 94, .10);
          color: #fff;
        }
    
        .mega-table th:first-child,
        .mega-table td:first-child {
          position: sticky;
          left: 0;
          z-index: 6;
          background: #07110b;
          box-shadow: 8px 0 18px rgba(0,0,0,.25);
          font-weight: 800;
        }
    
        .mega-table tbody tr:nth-child(even) td:first-child {
          background: #0a160e;
        }
    
        .mega-table tbody tr:hover td:first-child {
          background: #102416;
        }
    
        .mega-table th:first-child {
          z-index: 10;
          /*background: linear-gradient(180deg, #0f2a18, #07110b);*/
          background-color: black;
        }
        
        .pill {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-width: 82px;
          padding: 5px 9px;
          border-radius: 999px;
          font-size: 12px;
          font-weight: 800;
          background: rgba(239,68,68,.15);
          color: #ff7b7b !important;
          border: 1px solid rgba(239,68,68,.35);
        }
        
        .pill-good {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-width: 82px;
          padding: 5px 9px;
          border-radius: 999px;
          font-size: 12px;
          font-weight: 800;
          background: rgba(34,197,94,.15);
          color: #50fa91 !important;
          border: 1px solid rgba(34,197,94,.35);
        }
        
        .pill-warn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-width: 82px;
          padding: 5px 9px;
          border-radius: 999px;
          font-size: 12px;
          font-weight: 800;
          background: rgba(245,158,11,.15);
          color: #ffc766 !important;
          border: 1px solid rgba(245,158,11,.35);
          margin-top: 8px;
        }
    
        .pill.warn {
          background: rgba(245,158,11,.15);
          color: #ffc766;
          border: 1px solid rgba(245,158,11,.35);
        }
    
        .pill.bad {
          background: rgba(239,68,68,.15);
          color: #ff7b7b;
          border: 1px solid rgba(239,68,68,.35);
        }
            
        .nav {
            background-color: black;
            color: white;
            width: 7%;
            height: 100vh;
            box-shadow: 0px 5px 5px black;
            position: sticky;
            z-index: 200;
            top: 0;
            left: 0;
            float: left;
            /*transition: ease-in-out 0.3s;*/
        }
        
       /* .nav:hover {
            width: 20%;
        }*/
        
        .nav ul.table-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px;
            margin: 0;
            gap: 20px;
        }
        .nav a {
            padding: 5px;
            text-decoration: none;
            color: white;
            font-weight: 900;
            font-size: 1.25rem;
            line-height: 3.5rem;
        }
        
        
        .nav li {
            margin-right: 20px;
            list-style: none;
        }
        
        .nav ul .user {
            color: white;
        }
        
        .stack {
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .stack .user {
            margin-bottom: 5px;
            font-size: 0.75rem;
        }
        
        .logout p {
            color: #22C55E;
            font-size: 0.7rem;
        }
        
        .dropdown {
            position: relative;
            /*display: inline-block;*/
        }
        
        /* Dropdown button */
        .dropbtn {
            background-color: transparent;
            color: white;
            padding: 14px 20px;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }
        
        /* Dropdown content (hidden by default) */
       /* .dropdown-content {
            display: none;
            position: absolute;
            background-color: black;
            min-width: 160px;
            z-index: 10;
            box-shadow: 0 1px 8px black;
            border-radius: 5px 5px 5px;
            height: 100vh;
            top: 0;
            left: 1.25rem;
            transform: translateX(100%);
            transition: all 0.5s ease;
        } */
        
        /* Links inside the dropdown */
       /* .dropdown-content a {
            color: white;
            padding: 10px 10px;
            text-decoration: none;
            display: block;
            font-size: 15px;
        } */
        
        
        /* Change color of dropdown links on hover */
       /* .dropdown-content a:hover {
            color: black;
            background-color: white;
        } */
        
        /* Show the dropdown menu on hover */
      /*  .dropdown:hover .dropdown-content {
            display: block;
            border: 1px solid white;
        } */
        
        /* Position the dropdown content */
      /*  .dropdown-content {
            left: 100px;
            top: 40px;
        }*/
        


.dropdown-content {
    position: absolute;
    left: 110%;
    top: 50%;

    transform:
        translateY(-50%)
        translateX(-10px);

    min-width: 220px;

    background: black;

    border: 1px solid rgba(34, 197, 94, .18);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.45);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s;

    z-index: 999;
}

.dropdown-content::before {
    content: "";

    position: absolute;

    left: -6px;
    top: 50%;

    width: 12px;
    height: 12px;

    background: #22C55E;

    border-left: 1px solid rgba(34, 197, 94, .18);
    border-bottom: 1px solid rgba(34, 197, 94, .18);

    transform:
        translateY(-50%)
        rotate(45deg);
}

.dropdown-content a {
    display: block;

    padding: 14px 18px;

    color: #e2e8f0;

    text-decoration: none;

    transition:
        background .15s ease,
        padding-left .15s ease;
}

.dropdown-content a:hover {
    background: rgba(34, 197, 94, .12);

    padding-left: 24px;

    color: #22c55e;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}

        .table-header {
            padding: 20px;
            background-color: black;
            color: #A0A0A0;
        }

         
     /*    .pop-container {
              display: none; 
              position: fixed;
              z-index: 1; 
              left: 0;
              top: 0;
              width: 100%; 
              height: 100%;
              overflow: auto;
              
              background-color: rgba(99,99,99,0.8);
              backdrop-filter:blur(20px);
              padding-top: 50px;
              
         }*/
         
         .pop-container2 {
              position: fixed; 
              z-index: 1000; 
              left: 0;
              top: 0;
              width: 100%; 
              height: 100%; 
              overflow: auto; 
              
              background-color: rgba(99,99,99,0.9);
              backdrop-filter:blur(20px);
              padding-top: 50px;
              
         }
         
         .pop-container-card {
             /*display: none;*/
             position: fixed;
             left: 0;
             top: 0;
             z-index: 1;
             width: 100%;
             height: 100%;
             background-image: url('logo-with-name.png') cover/ no-repeat;
             
         }
         
         .display-pop-container {
              width: 100%; /* Full width */
         }
         
       /*  .pop-content {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             margin: 5% auto 15% auto; 
             width: 70%;
             column-count: 2;
             column-gap: 10px;
             column-rule-style: solid;
             padding-bottom: 30px;
         }
         
         .pop-content input[type=text], input[type=date], input[type=time]{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }
         
        .pop-content2 {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             margin: 5% auto 15% auto; 
             width: 100%;
             padding-bottom: 30px;
         }
         
        .pop-content2 input[type=text], input[type=date], input[type=password], input[type=datetime-local], textarea{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }
         
         .pop-content2 input[type=text]:active {
             background-color: #1E1E1E;
         }*/
         
        .pop-content3 {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 100%;
             padding-bottom: 30px;
         }
         
        .pop-content3 input[type=text], input[type=date]{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }
         
        .pop-content4 {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 100%;
             padding: 50px;
             padding-bottom: 30px;
         }
         
        .pop-content4 input[type=text], input[type=date]{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }
         
       /*  .pop-header {
             column-span: all;
             text-align: center;
             margin-bottom: 40px;
             font-size: 1.9rem;
             background-color: black;
             color: white;
             margin-top: 0;
             padding: 20px;
         } */
         
        /* .pop-card {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 70%;
             margin: auto;
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             z-index: 100;
         }
         
        .pop-card input[type=text], input[type=date], input[type=password], input[type=datetime-local]{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }*/
         
        .pop-card-alert {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 70%;
             margin: auto;
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             z-index: 100;
             font-size: 1.75rem;
             
         }
         
        .pop-card-alert2 {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 70%;
             margin: auto;
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             z-index: 100;
             font-size: 1.75rem;
             padding: 100px;
         }
         
        .pop-card-alert2 input{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         }
         

         
         .alert-img-container {
             width: 100%;
         }
         
         .alert-img-container img{
             display: block;
             margin-left: auto;
             margin-right: auto;
             top:  0;
            -webkit-animation:spin 4s linear infinite;
            -moz-animation:spin 4s linear infinite;
            animation:spin 4s linear infinite;
        }
        
        @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
        @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
        @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
         
         .load-container {
              display: none; /* Hidden by default */
              position: fixed; /* Stay in place */
              z-index: 1; /* Sit on top */
              left: 0;
              top: 0;
              width: 100%; /* Full width */
              height: 100%; /* Full height */
              overflow: auto; /* Enable scroll if needed */
              /*background-color: #474e5d;*/
              background-color: #121212;
              padding-top: 50px;
         }
         
         .load-container img {
             position: absolute;
             top: 0;
             left: 50%;
             transform: translate(-50%, -5%);
         }
         
         .load-content {
             background-color: #1E1E1E;
             color: #FFFFFF;
             margin: 5% auto 15% auto; 
             width: 600px;
             padding-bottom: 30px;
             height: 800px;
             border-radius: 15px;
         }
         .load-content input[type=text]{
             padding: 20px;
             width: 100%;
         }
         
         
        .load-content2 {
             background-color: #1E1E1E;
             color: #FFFFFF;
             margin: 5% auto 15% auto; 
             width: 600px;
             padding-bottom: 30px;
             height: 900px;
             border-radius: 15px;
         }
         .load-content2 input[type=text]{
             padding: 20px;
             width: 100%;
         }
         
        .loadBtn {
            padding: 10px;
            border-radius: 10px;
            background-color: black;
            color: white;
            min-width: 200px;
            font-weight: 900;
            margin-top: 400px;
        }
        
        .loadBtn:hover {
            background-color: white;
            color: black;
            box-shadow: 5px 5px 5px black;
        }
        
        .putawayBtn {
            padding: 10px;
            border-radius: 10px;
            background-color: black;
            color: white;
            min-width: 200px;
            font-weight: 900;
            margin-top: 100px;
        }
        
        .putawayBtn:hover {
            background-color: white;
            color: black;
            box-shadow: 5px 5px 5px black;
        }
        
        
        .receiveBtn {
            padding: 10px;
            border-radius: 10px;
            background-color: black;
            color: white;
            min-width: 200px;
            font-weight: 900;
            margin-top: 40px;
        }
        
        .receiveBtn:hover {
            background-color: white;
            color: black;
            box-shadow: 5px 5px 5px black;
        }
        
        .loadTag {
            border: black solid 2px;
            background-color: black;
            color: white;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 40%;
            margin: auto;
            font-size: 0.7rem;
        }
        
        .shipTag {
            /*background-color: #22C55E;*/
            border: 1px solid #22C55E;
            color: #22C55E;
            border-radius: 8px;
            padding: 4px 10px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .shipTag2 {
            /*background-color: #22C55E;*/
            border: 1px solid #22C55E;
            color: #22C55E;
            border-radius: 8px;
            padding: 4px 10px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .specialTag {
            background-color: #EAB308;
            color: black;
            border-radius: 8px;
            padding: 4px 10px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .receiveTag {
           /* background-color: #22C55E; */
            border: 1px solid #22C55E;
            color: #22C55E;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .lateTag {
            /*background-color: #DC2626;*/
            border: 1px solid #DC2626;
            color: #DC2626;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .lateTag2 {
            /*background-color: #DC2626;*/
            border: 1px solid #DC2626;
            color: #DC2626;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .cancelledTag {
            /*background-color: #DC2626;*/
            border: 1px solid #DC2626;
            color: #DC2626;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .cancelledTag2 {
            /*background-color: #DC2626;*/
            border: 1px solid #DC2626;
            color: #DC2626;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .pickedTag {
            background-color: #EAB308;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-top: 8px;
            box-shadow: 0 0 10px #EAB308,
                        0 0 20px #EAB308,
                        0 0 40px #EAB308;
        }
        
        .notPicked {
            /*background-color: #6B7280;*/
            border: 1px solid #6B7280;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
        }
        
        .noInventory {
            /*background-color: #6B7280;*/
            border: 1px solid #DC2626;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .noInventory2 {
            /*background-color: #6B7280;*/
            border: 1px solid #DC2626;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 20%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .active {
            /*background-color: #6B7280;*/
            border: 1px solid #22C55E;
            color: #22C55E;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .active2 {
            /*background-color: #6B7280;*/
            border: 1px solid #22C55E;
            color: #22C55E;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 20%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .picked{
            color: #00FF84;
        }
        
        .not_picked{
            color: #DC2626;
        }
        
        .filterForm{
            padding: 0;
        }
        
        .filterForm select {
            max-width: 400px;
            max-height: 50px;
            font-size: 15px;
            padding: 10px;
        }

        .weightTag {
            background-color: #DC2626;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: 60%;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
        
        .weightTag2 {
            background-color: #DC2626;
            color: #FFFFFF;
            border-radius: 10px;
            padding: 5px;
            text-align: center;
            width: auto;
            margin: auto;
            font-size: 12px;
            margin-bottom: 8px;
            margin-top: 8px;
            box-shadow: 0 0 10px #DC2626,
                        0 0 20px #DC2626,
                        0 0 40px #DC2626;
        }
         
         label {
             font-size: 1.4rem;
             font-weight: 900;
         }
         
         .close {
             color: red;
              position: absolute;
              right: 35px;
              top: 15px;
              font-size: 40px;
         }
         .close:hover {
             cursor:  pointer;
             color: white;
         }
         
         form {
             padding: 3rem;
         }
         
         .column-btn {
             column-span: all;
             text-align: center;
             margin-top: 40px;
         }
         

         
         #popTable {
             width: 100%;
         }
         
        .table-hover:hover{
            cursor: pointer;
        }
        .tran-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .tran-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .tran-btn2 {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .tran-btn2:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .lot-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: 40%;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .lot-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .lot-btn2 {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .lot-btn2:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .edit-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .edit-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .hold-notes {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .hold-notes:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .hist-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .hist-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .hist-btn2 {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        a {
            text-decoration: none;
        }
        
        .hist-btn2:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        
        .ship-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: 40%;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .ship-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .bol-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: 40%;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .bol-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
        }
        
        .detail-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            width: auto;
            font-size: 12px;
            border-radius: 10px;
            display: flex;
            margin: auto;
        }
        
        .detail-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
            box-shadow: 5px 5px 5px black;
        }
        
        .assign-btn {
            padding: 10px;
            font-weight: 900;
            color: white;
            background-color: black;
            float: left;
            width: 100%;
            font-size: 15px;
        }
        
        .assign-btn:hover {
            background-color: white;
            color: black;
            cursor: pointer;
            box-shadow: 5px 5px 5px black;
        }
        
      /*  .popBtn {
            padding: 10px;
            border-radius: 10px;
            background-color: black;
            color: white;
            min-width: 200px;
            font-weight: 900;
        }
        
        .popBtn:hover {
            background-color: white;
            color: black;
            box-shadow: 0 0 10px white,
                        0 0 20px white,
                        0 0 40px white;
        }*/
        
        fieldset {
            padding: 20px;
            height: 600px;
            align-content: center;
        }
        
        
        .header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5px;
            align-items: center;
        }
        
        .header img {
            max-width: 280px;
        }
        
        .login_form {
            background-image: url("logo.png");
            background-repeat: no-repeat;
            background-position: right center;
            background-size: contain;
            
        }
        
        .login input[type=text], input[type=password] {
            background-color: transparent;
        }
        
        .login input[type=text]:focus, input[type=password]:focus {
            background-color: white;
        }
        
        .login input[type=text], input[type=password]{
            padding: 20px;
            width: 100%;
        }
        
        .login label {
            color: white;
        }
        .card {
            width: 50px;
        }
        
        .dev-btn {
            padding: 25px;
            width: auto;
            margin: auto;
            text-decoration: none;
            color: black;
        }
        
        .dev-btn a {
            text-decoration: none;
            color: black;
        }
        
        .dev-btn:visited {
            color: black;
        }
        
        .grid-form2 {
            display: grid;
            /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
            gap: 18px;
        }
        
        .tt-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .tt-form-section {
            position: relative;
            margin-bottom: 20px;
            padding: 22px;
            border-radius: 22px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }
        
        .tt-form-section::before {
            content: "";
            position: absolute;
            left: 22px;
            top: 0;
            width: 42px;
            height: 4px;
            border-radius: 0 0 999px 999px;
            background: #2563eb;
        }
        
        .grid {
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 10px;
            padding: 10px;
            width: 90%;
            margin: auto;
            border: 2px solid black;
            background-color: #121212;
        }
        
        .grid > div{
            font-size: 1.5rem;
            text-align: center;
            padding: 10px;
            border: 2px solid black;
        }
        
        .item1 {
            grid-column: 1 / 4;
            background-color: #1E1E1E;
            color: white;
            padding: 15px;
        }
        
        .item9 {
            grid-column: 1 / 3;
        }
        
        .pricing {
            grid-column: 1/4;
        }
        
        .prodHeader {
            text-decoration: underline;
            font-size: 1.6rem;
            background-color: #1E1E1E;
            padding: 8px;
            margin-bottom: 6px;
        }
        
        .grid h5 {
            color: #A0A0A0;
        }
        
        .grid input[type=text], select{
            text-align: center;
            font-size: 20px;
        }
        
        select {
            width: 100%;
            padding: 20px;
        }
        
        #myInput {
          background-image: url('images/search.png'); /* Add a search icon to input */
          background-position: 10px 12px; /* Position the search icon */
          background-repeat: no-repeat; /* Do not repeat the icon image */
          background-size: 20px;
          width: 80%; /* Full-width */
          font-size: 16px; /* Increase font-size */
          padding: 12px 20px 12px 40px; /* Add some padding */
          border: 1px solid #ddd; /* Add a grey border */
          margin-bottom: 12px; /* Add some space below the input */
        }
        
        .yms-header {
            text-align: center;
        }
        
        .yms_grid{
            display: grid;
            grid-template-columns: auto auto;
            gap: 30px;
            grid-template-rows: auto auto auto auto auto;
            padding-top: 20px;
            font-size: 30px;
            font-weight: 600;
        }
        
        .yms_grid > div {
            padding: 50px;
            border-radius: 15px;
            margin: 5px;
            transition: ease-in-out 0.3s;
        }
        
        .yms_grid >div:hover {
            transform: scale(1.05);
        }
        
        .loader {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1;
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-content: center;
            background-color: #1E1E1E;
            transition: opacity 1s, visibility 1s;
        }
        
        .loader-hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader::after{
            content: "";
            width: 100px;
            height: 100px;
        }
        
        .loader img{
            position: fixed;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 500px;
            margin:-300px 0 0 -300px;
            -webkit-animation:spin 4s linear infinite;
            -moz-animation:spin 4s linear infinite;
            animation:spin 4s linear infinite;
        }
        
        @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
        @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
        @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
        
        .badge-container {
            position: relative;
            display: inline-block;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -10px;
            padding: 10px 16px;
            border-radius: 50%;
            background: red;
            color: white;
            font-size: 20px;
        }
        
        .loadCard {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }
        
        .loadCard-Container {
            background-color: #1E1E1E;
            padding: 30px;
            width: 300px;
            border-radius: 8px;
            margin: 10px;
        }
        
        .loadCard-Content {
            text-align: center;
        }
        
        .truckImg img {
            width: 100px;
        }
        
        .loadCount {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFFFFF;
        }
        
        .loadCard-Content p {
            color: #A0A0A0;
        }
        

        
        .image-wrapper {
            display: flex;
            justify-content: center;
        }
        .image-wrapper img {
            max-width: 1000px;
            opacity: 0.5;
        }
        
        .casePickInfo{
            display: flex;
            flex-direction: row;
            gap: 12px
        }
        
        /* Hide native checkbox */
        input[type=checkbox] {
            opacity: 0;
            position: absolute;
            width: 0;
            height: 0;
        }
        
        /* Custom checkbox box */
        .custom_checkbox {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            background-color: #fff;
            vertical-align: middle;
            margin-right: 8px;
            position: relative;
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }
        
        /* Checked state (box color) */
        input[type="checkbox"]:checked + .custom_checkbox {
            background-color: #22C55E;
            border-color: black;
        }
        
        /* Checkmark base state (invisible and small) */
        .custom_checkbox::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1px;
            width: 6px;
            height: 12px;
            border: solid black;
            border-width: 0 3px 3px 0;
            transform: translate(-1px, -4px) rotate(45deg) scale(0);
            opacity: 0;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        
        /* Animate checkmark on check */
        input[type="checkbox"]:checked + .custom_checkbox::after {
            transform: translate(-1px, -4px) rotate(45deg) scale(1);
            opacity: 1;
        }
        
        .home {
            display: flex;
            flex-flow: row wrap;
            gap: 10px;
            justify-content: space-around;
        }

        
        
        .heroBtn {
            width: 20rem;
            height: auto;
            aspect-ratio: 5 / 3;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .heroBtn:hover {
            border: solid 3px #22C55E;
            box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E;
        }
        
        .item2 img{
            width: 275px;
        }
        
        .generateForm {
            width: 100%;
        }
        
        .generateForm input[type=text] {
            width: 100%;
            padding: 20px;
            text-transform: uppercase;
        }
        
        .generateForm label {
            color: #FFFFFF;
        }
        
.mobile-table {
  display: grid;
  gap: 14px;
}

.mobile-row {
  background: #1E1E1E;
  border: 1px solid #eee;
  border-left: 5px solid #22C55E;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  
  position: relative;
  overflow: hidden;
  color: white;
  
  margin-left: 7%;
}

.mobile-row > div {
  min-width: 0;
}

.mobile-row strong {
  display: block;
  font-size: 0.72rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  
}

.mobile-row span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 10px;
}

.inventory-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.status-badges {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.badge {
  background: #fafafa;
  border: 0.2px solid #f97316;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 0.8rem;
  overflow: hidden;
}

.table-container3{
    display: none;   
}

.grid {
    grid-template-columns: auto;
}

.mobile-logo {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
}

.mobile-logo img {
    width: 150px;
}

.mobile-logo2 {
    display: flex;
    align-items: center;
    margin-right: auto;
    width: 100%;
}

.mobile-logo2 img {
    width: 100px;
}

.RF-container {
    padding: 20px;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(99,99,99,0.8);
    padding-top: 50px;
}

.RF-container #scanInput {
    width: 45%;
    padding: 20px;
}




.table-toolbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #101713;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px 18px 0 0;
  padding: 18px;
}

.table-toolbar h3 {
  margin: 0;
  color: white;
}

.table-toolbar p {
  margin: 4px 0 0;
  color: #8b9b91;
  font-size: .85rem;
}

.table-toolbar input {
  background: #0a0f0c;
  border: 1px solid rgba(61,255,139,.25);
  color: white;
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
  max-width: 70%;
}

.inventory-card {
  position: relative;
  overflow: hidden;
  background: #1d1d1d;
  border: 1px solid rgba(255,255,255,.18);
  border-left: 5px solid #1cff85;
  border-radius: 14px;
  padding: 22px;
  color: white;
}

/* THE LOGO */
.card-logo {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
  
  opacity: .09;               /* super subtle */
  pointer-events: none;
  z-index: 0;

  /* fade it out */
  mask-image: radial-gradient(circle, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, black 25%, transparent 75%);
}

/* keep your content above it */
.card-content {
  position: relative;
  z-index: 1;
}

.dateInput {
    padding: 15px;
}

.flatpickr-calendar {
    background: #121212;
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 20px 45px rgba(0,0,0,.55);
    border-radius: 18px;
    overflow: hidden;
}

.flatpickr-months,
.flatpickr-weekdays {
    background: #050505;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.numInputWrapper input,
.flatpickr-weekday {
    color: #f9fafb !important;
}

.flatpickr-day {
    color: #d1d5db;
    border-radius: 10px;
}

.flatpickr-day:hover {
    background: rgba(34,197,94,.14);
    border-color: rgba(34,197,94,.35);
}

.flatpickr-day.today {
    border-color: #22C55E;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #22C55E;
    border-color: #22C55E;
    color: #020617;
    font-weight: 700;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #4b5563;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #22C55E;
}

.quick-dates button {
  background: rgba(34,197,94,.1);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
  padding: 7px 11px;
  cursor: pointer;
  font-size: 0.75rem;
}

.quick-dates button:hover {
  background: rgba(34,197,94,.2);
  color: white;
}

.flatpickr-day.has-data {
    position: relative;
    
}

.flatpickr-day.has-data::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    transform: translateX(-50%);

    width: 6px;
    height: 6px;

    border-radius: 999px;

    background: #22C55E;

    box-shadow:
        0 0 6px rgba(34,197,94,.8),
        0 0 12px rgba(34,197,94,.4);
}

.clear-btn {
    padding: 10px;
    border-radius: 10px;
    background-color: red;
    color: white;
    min-width: 200px;
    font-weight: 900;
}
        
.clear-btn:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 10px white,
                0 0 20px white,
                0 0 40px white;
}

canvas {
  min-width: 900px;
  height: 300px;
}

.signature-pad {
  cursor: url(pen.png) 1 26, pointer;
  border: 2px solid black;
  border-radius: 4px;
  background-color: #fff;
}

.mobile-blocker {
  display: none;
}

/*.corvusContainerImg {
    width:220px;
    height:auto;

    position:relative;
    z-index:2;

    transition:.35s ease;
    
    animation:corvusIdle 7s ease-in-out infinite;
}

@keyframes corvusIdle{

    0%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(-3px);
    }

    100%{

        transform:translateY(0px);
    }

}

.corvus-thinking .corvusContainerImg{

    filter:

        brightness(1.08)

        drop-shadow(0 0 12px rgba(0,255,120,.45));
}

.corvus-status{

    margin-top:8px;

    color:#00ff88;

    font-size:14px;

    font-weight:600;

    letter-spacing:.6px;

    opacity:.75;

    transition:.3s ease;
}

.corvus-thinking + .corvus-status{

    opacity:1;

    animation:
        statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse{

    0%,100%{

        opacity:.55;
    }

    50%{

        opacity:1;
    }

}

.corvusNav {
    cursor: pointer;
}

.corvusNav:hover {
    border-radius: 20px;
    box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E
}*/

/*.pop-container-corvus {
        display: none; 
        position: fixed; 
        z-index: 10000; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%;
        overflow: auto; 
        background-color: rgba(99,99,99,0.8);
        backdrop-filter:blur(20px);
        padding-top: 50px;
        content: contain;
}*/

      /*  .pop-card-alert2-corvus {
             background-color: #1E1E1E;
             border: solid #22C55E 2px;
             border-radius: 20px;
             color: #FFFFFF;
             width: 70%;
             max-height: 90%;
             margin: auto;
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             z-index: 100;
             font-size: 1.75rem;
             padding: 100px;
             overflow: auto;
         }
         
        .pop-card-alert2-corvus input{
             width: 100%;
             padding: 20px;
             text-transform: uppercase;
         } */
         

.corvusContainer {
    position: fixed;
    z-index: 100;
    bottom: 0;
    right: 0;
    padding: 12px;
}
        
.corvusBtn {
    background: #FFFFFF;
    max-width: 100px;
    border: 2px solid black;
    border-radius: 50px;
    cursor: pointer;
}

.corvusBtn:hover {
    box-shadow: 0 0 10px #22C55E,
                        0 0 20px #22C55E,
                        0 0 40px #22C55E
}

.closeCorvus {
    color: red;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 40px;
}

.closeCorvus:hover {
    cursor:  pointer;
    color: white;
}

.hideCorvus {
    display: none;
}

.bringBack {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    border: none;
    border-radius: 75%;
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    font-size: 24px;
    cursor: pointer;

    box-shadow:
    0 0 5px rgba(34, 197, 94, 0.4),
    0 0 15px rgba(34, 197, 94, 0.3),
    0 0 30px rgba(34, 197, 94, 0.2);

    transition: all .25s ease;
    animation: corvusPulse 2s infinite;
}

.bringBack:hover {
    transform: scale(1.1);
    box-shadow:
    0 0 5px rgba(34, 197, 94, 0.4),
    0 0 15px rgba(34, 197, 94, 0.3),
    0 0 30px rgba(34, 197, 94, 0.2);
}

.showBack {
    display: unset;
}

@keyframes corvusPulse {
    0% {
        text-shadow: 0 0 5px rgba(50,145,255,.3);
    }
    50% {
        text-shadow:
            0 0 10px rgba(50,145,255,.8),
            0 0 20px rgba(50,145,255,.6),
            0 0 30px rgba(50,145,255,.4);
    }
    100% {
        text-shadow: 0 0 5px rgba(50,145,255,.3);
    }
}

.turntime-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 0.95rem;
}

.neutral {
    color: #22C55E;
}

.good {
  color: #22C55E;
}

.warning {
    background: rgba(245, 158, 11, 0.10);
    border-color: #F59E0B;
    color: #F59E0B;
}

.bad {
    background: rgba(239, 68, 68, 0.10);
    border-color: #EF4444;
    color: #EF4444;
    animation: turnPulse 2s infinite;
}

@keyframes turnPulse {
    0% {
        box-shadow: 0 0 5px rgba(239, 68, 68, .3);
    }
    50% {
        box-shadow:
            0 0 10px rgba(239, 68, 68, .8),
            0 0 20px rgba(239, 68, 68, .6),
            0 0 30px rgba(239, 68, 68, .4);
    }
    100% {
        box-shadow: 0 0 5px rgba(239, 68, 68, .3);
    }
}


.notStarted {
    border-color: #F59E0B;
    color: #F59E0B;
    animation: notStartedPulse 2s infinite;
}


@keyframes notStartedPulse {
    0% {
        box-shadow: 0 0 5px rgba(245, 158, 11, .3);
    }
    50% {
        box-shadow:
            0 0 10px rgba(245, 158, 11, .8),
            0 0 20px rgba(245, 158, 11, .6),
            0 0 30px rgba(245, 158, 11, .4);
    }
    100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, .3);
    }
}

.finished {
    border-left: 5px solid #FFFFFF;
}

.workRemaining {
    border-left: 5px solid #ff7b7b;
}

.pop-container[style*="display: block"],
.pop-container[style*="display:block"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.pop-container {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 45%, rgba(34,197,94,.08), transparent 28%),
        linear-gradient(180deg, #020403, #050806 55%, #020403) !important;
}

.pop-container::before {
    content: ' ';
    display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url('images/full_logo.png');
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  transform: rotate(-40deg);
}

.pop-card::before {
    opacity: 0.6;
}

.pop-card {
    position: relative;
    /*width: min(460px, 95vw);*/
    padding: 34px;
    background: #080d0b !important;
    border: 1px solid rgba(34,197,94,.28) !important;
    border-radius: 22px;
    
}


.pop-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pop-card input,
.pop-card select,
.pop-card textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.22);
    background: #030706;
    color: #f8fafc;
    outline: none;
}

.pop-card input:focus,
.pop-card select:focus,
.pop-card textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.13);
}


.close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;

    background: rgba(255,255,255,.06);

    color: #cbd5e1;

    font-size: 1.5rem;

    cursor: pointer;

    transition: .2s ease;
}

.close:hover {
    background: #22c55e;
    color: #052e16;
    transform: rotate(90deg);
}

.pop-header {
    margin: 0 0 24px;

    color: #f8fafc;

    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: -.03em;
}

.bom-table {
    min-width: 500px;
    background: transparent;
}

.bom-table th {
    font-weight: 900;
    font-size: 1.45rem;
}

.bom-table td {
    padding: 15px;
}

#popForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#popForm input,
#popForm select,
#popForm textarea {
    width: 100%;

    padding: 14px 16px;

    border-radius: 14px;

    border: 1px solid rgba(148,163,184,.18);

    background: rgba(2,6,23,.65);

    color: #f8fafc;

    font-size: .95rem;

    outline: none;

    transition: .2s ease;
}

#popForm input::placeholder,
#popForm textarea::placeholder {
    color: #64748b;
}

#popForm input:hover,
#popForm select:hover,
#popForm textarea:hover {
    border-color: rgba(34,197,94,.4);
}

#popForm input:focus,
#popForm select:focus,
#popForm textarea:focus {
    border-color: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,.12);
}

.popBtn {
    margin-top: 8px;

    border: none;

    border-radius: 14px;

    padding: 14px 18px;

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #16a34a
        );

    color: #052e16;

    font-size: .95rem;
    font-weight: 900;

    cursor: pointer;

    transition: .2s ease;
}

.popBtn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(34,197,94,.25);
}

.popBtn:active {
    transform: translateY(0);
}

.pop-card4::before {
    opacity: 0.6;
}

.pop-card4 {
    position: relative;
    width: min(460px, 95vw);
    padding: 34px;
    background: #080d0b !important;
    border: 1px solid rgba(34,197,94,.28) !important;
    border-radius: 22px;
    max-height: 700px;
    overflow: scroll;
}

.pop-card4 form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pop-card4 input,
.pop-card4 select,
.pop-card4 textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.22);
    background: #030706;
    color: #f8fafc;
    outline: none;
}

.pop-card4 input:focus,
.pop-card4 select:focus,
.pop-card4 textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.13);
}

/*.pop-card-alert2-corvus {
    position:relative;
    justify-content:center;
    align-items:center;

    width:260px;
    height:260px;
}

.pop-card-alert2-corvus::before {
        content:"";

    position:absolute;

    width:175px;
    height:175px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(0,255,110,.45) 0%,
            rgba(0,255,110,.18) 35%,
            rgba(0,255,110,0) 75%);

    filter:blur(28px);

    opacity:0;

    transform:scale(.8);

    transition:.4s ease;

    z-index:1;
}

.corvus-thinking::before{

    animation:

        corvusGlow 2.2s ease-in-out infinite,

        corvusRotate 12s linear infinite;
}

@keyframes corvusRotate{

    from{

        rotate:0deg;
    }

    to{

        rotate:360deg;
    }

}

@keyframes corvusGlow{

    0%{

        transform:scale(.95);

        opacity:.25;
    }

    50%{

        transform:scale(1.08);

        opacity:.8;
    }

    100%{

        transform:scale(.95);

        opacity:.25;
    }

}


.pop-card-alert2-corvus form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pop-card-alert2-corvus input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.22);
    background: #030706;
    color: #f8fafc;
    outline: none;
    text-transform: uppercase;
}

.pop-card-alert2-corvus input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.13);
}*/


.corvus-thinking-wrap {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.corvus-thinking-wrap::before {
    content: "";
    position: absolute;
    inset: 35px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 255, 120, 0.5) 0%,
        rgba(0, 255, 120, 0.2) 40%,
        rgba(0, 255, 120, 0) 75%
    );

    filter: blur(28px);

    opacity: 0;
    transform: scale(0.85);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;

    z-index: -1;
    pointer-events: none;
}

.corvus-thinking-wrap.thinking::before {
    animation: corvusGlow 2.2s ease-in-out infinite;
}

@keyframes corvusGlow {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.corvusContainerImg {
    position: relative;
    z-index: 2;

    animation: corvusIdle 6s ease-in-out infinite;

    transition:
        filter 0.4s ease,
        transform 0.4s ease;
}

.corvus-thinking-wrap.thinking .corvusContainerImg {
    filter:
        brightness(1.08)
        drop-shadow(0 0 12px rgba(0, 255, 120, 0.4));
}

@keyframes corvusIdle {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.corvus-status {
    margin-top: 4px;
    margin-bottom: 12px;

    color: #00ff88;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    opacity: 0.7;

    transition: opacity 0.3s ease;
}

.corvus-status.active {
    opacity: 1;
    animation: corvusStatusPulse 1.8s ease-in-out infinite;
}

@keyframes corvusStatusPulse {
    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   CORVUS MODAL
========================================= */

#lynx.pop-container {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);

    z-index: 9999;
}


/* =========================================
   CORVUS CARD
========================================= */

.pop-card-alert2-corvus {
    position: relative;

    width: min(92vw, 760px);
    max-height: 90vh;

    padding: 28px 34px 34px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(0, 255, 120, 0.28);
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(15, 18, 17, 0.98),
            rgba(4, 7, 6, 0.98)
        );

    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(0, 255, 120, 0.08);

    text-align: center;

    overflow: hidden;
}


/* subtle green atmosphere inside card */

.pop-card-alert2-corvus::before {
    content: "";

    position: absolute;
    top: -140px;
    left: 50%;

    width: 420px;
    height: 280px;

    transform: translateX(-50%);

    background: radial-gradient(
        circle,
        rgba(0, 255, 120, 0.12),
        rgba(0, 255, 120, 0) 70%
    );

    pointer-events: none;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.pop-card-alert2-corvus .close {
    position: absolute;
    top: 16px;
    right: 20px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.6);

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.pop-card-alert2-corvus .close:hover {
    color: #00ff88;
    background: rgba(0, 255, 120, 0.08);
    transform: rotate(90deg);
}


/* =========================================
   INPUT
========================================= */

#scanInput {
    width: min(100%, 620px);
    box-sizing: border-box;

    padding: 16px 20px;

    border: 1px solid rgba(0, 255, 120, 0.45);
    border-radius: 14px;

    background: rgba(0, 0, 0, 0.42);

    color: #ffffff;

    font-size: 16px;
    font-family: inherit;

    outline: none;
    
    text-transform: uppercase;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.015),
        0 0 18px rgba(0, 255, 120, 0.04);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

#scanInput::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

#scanInput:hover {
    border-color: rgba(0, 255, 120, 0.65);
}

#scanInput:focus {
    border-color: #00ff88;

    background: rgba(0, 0, 0, 0.58);

    box-shadow:
        0 0 0 3px rgba(0, 255, 120, 0.08),
        0 0 22px rgba(0, 255, 120, 0.16);
}


/* =========================================
   RESULT / RESPONSE AREA
========================================= */

#result {
    width: min(100%, 620px);

    flex: 1;
    min-height: 200px;

    overflow-y: auto;
    overflow-x: hidden;

    margin: 0 auto;

    padding: 18px 20px;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);

    color: #ffffff;

    text-align: left;
    line-height: 1.55;
}


/* response text */

.lynx-response {
    color: rgba(255, 255, 255, 0.92);

    font-size: 15px;
    line-height: 1.6;

    animation: corvusResponseFade 0.35s ease;
}

.lynx-response p {
    margin: 0 0 10px;
}

.lynx-response p:last-child {
    margin-bottom: 0;
}

.lynx-response strong {
    color: #00ff88;
    font-weight: 650;
}

.lynx-response ul {
    margin: 10px 0 0 18px;
    padding: 0;
}

.lynx-response li {
    margin-bottom: 6px;
}


/* =========================================
   RESPONSE ANIMATION
========================================= */

@keyframes corvusResponseFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   CORVUS AVATAR WRAPPER
========================================= */

.corvus-thinking-wrap {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 4px;

    z-index: 1;
}


/* =========================================
   THINKING GLOW
========================================= */

.corvus-thinking-wrap::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 255, 120, 0.52) 0%,
        rgba(0, 255, 120, 0.20) 38%,
        rgba(0, 255, 120, 0) 74%
    );

    filter: blur(28px);

    opacity: 0;
    transform: scale(0.84);

    z-index: -1;

    pointer-events: none;
}

.corvus-thinking-wrap.thinking::before {
    animation: corvusGlow 2.2s ease-in-out infinite;
}

@keyframes corvusGlow {
    0%,
    100% {
        opacity: 0.22;
        transform: scale(0.88);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.1);
    }
}


/* =========================================
   CORVUS IMAGE
========================================= */

.corvusContainerImg {
    position: relative;
    z-index: 2;

    max-width: 300px;
    height: auto;

    animation: corvusIdle 6s ease-in-out infinite;

    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.corvus-thinking-wrap.thinking .corvusContainerImg {
    filter:
        brightness(1.08)
        drop-shadow(0 0 12px rgba(0, 255, 120, 0.42));
}

@keyframes corvusIdle {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* =========================================
   CORVUS STATUS
========================================= */

.corvus-status {
    margin-top: -2px;
    margin-bottom: 18px;

    color: #00ff88;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    opacity: 0.68;

    transition: opacity 0.25s ease;
}

.corvus-status.active {
    animation: corvusStatusPulse 1.8s ease-in-out infinite;
}

@keyframes corvusStatusPulse {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   CURRENT INVESTIGATION
========================================= */

.corvus-investigation {
    width: min(100%, 620px);

    margin: 0 auto 18px;
    padding: 14px 16px;

    box-sizing: border-box;

    background: rgba(0, 255, 120, 0.035);

    border: 1px solid rgba(0, 255, 120, 0.16);
    border-radius: 12px;

    text-align: left;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.corvus-investigation:hover {
    background: rgba(0, 255, 120, 0.05);
    border-color: rgba(0, 255, 120, 0.25);
}


/* HEADER */

.investigation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 7px;
}

.investigation-label {
    color: rgba(0, 255, 136, 0.65);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.investigation-toggle {
    color: rgba(255, 255, 255, 0.45);

    font-size: 18px;
    line-height: 1;

    cursor: pointer;

    transition: color 0.2s ease;
}

.investigation-toggle:hover {
    color: #00ff88;
}


/* INVESTIGATION NAME */

.investigation-name {
    color: #ffffff;

    font-size: 15px;
    font-weight: 650;

    margin-bottom: 10px;
}


/* STEPS */

.investigation-steps {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.investigation-step {
    position: relative;

    padding-left: 16px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;
    line-height: 1.4;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.investigation-step::before {
    content: "↳";

    position: absolute;
    left: 0;

    color: rgba(0, 255, 136, 0.55);
}

.investigation-step:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(2px);
}

.investigation-step.current {
    color: #00ff88;
}


/* COLLAPSED */

.corvus-investigation.collapsed .investigation-steps {
    display: none;
}

.corvus-investigation.collapsed .investigation-name {
    margin-bottom: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .pop-card-alert2-corvus {
        width: 94vw;
        min-height: unset;

        padding: 24px 18px 28px;

        border-radius: 18px;
    }

    .corvusContainerImg {
        width: 230px;
    }

    #scanInput {
        font-size: 16px;
        padding: 14px 16px;
    }

    #result {
        padding: 16px;
    }
}

.pop-card-signature {
    position: relative;
    padding: 34px;
    background: #080d0b !important;
    border: 1px solid rgba(34,197,94,.28) !important;
    border-radius: 22px;
    box-shadow:
        0 30px 100px rgba(0,0,0,.7),
        0 0 45px rgba(34,197,94,.08);
}

.fulcrx-loader {
    position: relative;
    width: min(420px, 70vw);
    margin: 0 auto;
}

.fulcrx-loader img {
    width: 100%;
    display: block;
}

.fulcrx-sweep {
    position: absolute;
    top: 23%;
    left: -20%;
    width: 18%;
    height: 10px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.25),
        rgba(34, 197, 94, 0.95),
        rgba(255, 255, 255, 0.9),
        rgba(34, 197, 94, 0.25),
        transparent
    );
    filter: blur(5px);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: fulcrxSweep 1.8s linear infinite;
}

@keyframes fulcrxSweep {
    from {
        left: -25%;
    }

    to {
        left: 110%;
    }
}

#pageLoader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

#pageLoader.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.production-container {
    display: grid;
    gap: 14px;
}

.production-card {
  border: 1px solid #eee;
  border-left: 5px solid #22C55E;
  border-radius: 16px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  color: white;
  gap: 20px;
}


.status-content {
    flex: 1;
}

.status-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
}

/* horizontal line */
.status-container::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #555;
    z-index: 0;
}

.status-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.status-marker {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #111;
    border: 2px solid #666;

    font-size: 18px;
}

.status-label {
    margin-top: 8px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}


/* COMPLETED */
.status-step.complete .status-circle {
    border-color: #fff;
    color: #fff;
}

.status-step.complete .status-label {
    color: #fff;
}


/* CURRENT */
.status-step.cirlceActive .status-circle {
    border-color: #7cff00;
    color: #7cff00;
    box-shadow: 0 0 10px rgba(124, 255, 0, .7);
}

.status-step.cirlceActive .status-label {
    color: #7cff00;
    font-weight: bold;
}


/* FUTURE */
.status-step.pending .status-circle {
    border-color: #555;
    color: #555;
}

.status-step.pending .status-label {
    color: #777;
}


@media only screen and (max-width: 1440px) {
    .nav {
        height: unset;
    }
    
}

@media only screen and (max-width: 1200px) {

  body > *:not(.mobile-blocker) {
    display: none !important;
  }

  .mobile-blocker {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #121212;
    color: white;
    padding: 30px;
    font-family: 'Poppins', sans-serif;
  }
}
        
        
