        table {
            border-collapse: collapse;
        }
        
        tbody {
            font-size: 12px;
        }
        
        tr.sub-row {
            display: none;
        }

        tr.expanded-row {
            display: table-row;
        }

        td {
            border: 1px solid #ddd;
            padding: 4px 12px;
        }

        th {
            padding: 4px 12px;
        }



        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
            color: #092332;
            /* font-size: 11px; */
            margin: 0;
        }
        
        #body-content {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 90vh;
            overflow: hidden;
        }
        
        #center-box {
            background: #092332;
            color: #fff;
            padding: 50px;
        }
        
        #form-box {
            display: flex;
            justify-content: center;
        }

        .form-column {
            margin-right: 20px;
        }

        .error {
            color: red;
        }
        
        #center-box a,
        #top-nav-back a {
            color: #fff;
            text-decoration: none;
        }
        
        #center-box a:hover
        #top-nav-back a {
            text-decoration: underline;
        }
        
        #top-nav-back {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10000;
            color: #fff;
            padding: 15px;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: #777;
        }

        nav li {
            float: left;
            border-right: 1px solid #bbb;
            background-color: #333;
        }

        nav li a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        /* Change the link color to #111 (black) on hover */
        nav li a:hover {
            background-color: #559;
        }

        .panel {
            padding: 20px;
        }

        table {
            margin-top: 20px;
        }

        th {
            font-weight: 700;
        }

        textarea {
            padding: 0.25em;
            border-radius: 0.5em;
            background: linear-gradient(to bottom, #fff 0%, #eee 100%);
            border-color: #aaa;
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
        }

        input[type=text],
        input[type=password] {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #444;
            line-height: 1.3;
            padding: .6em 1.4em .5em .8em;
            border-radius: 0.5em;
            background: linear-gradient(to bottom, #fff 0%, #eee 100%);
            border: 1px solid #aaa;
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
        }

        input[type=file] {
            display: none;
        }

        .button-css {
            width: fit-content;
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #444;
            line-height: 1.3;
            padding: .5em .8em;
            /* margin: 0 20px; */
            border: 1px solid #aaa;
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
            border-radius: .5em;
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            background-color: #fff;
            background-image: linear-gradient(to bottom, #eee 0%, #ddd 100%);
            background-repeat: repeat;
        }

        .button-css:hover {
            filter: brightness(0.9);
        }

        .button-css:active {
            filter: brightness(0.8);
        }

        .button-css:disabled {
            filter: brightness(1.1);
            color: #bbb;
            border-color: #ccc;
        }

        /* class applies to select element itself, not a wrapper element */
        .select-css {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #444;
            line-height: 1.3;
            padding: .6em 1.4em .5em .8em;
            margin: 15px 0 0 0;
            border: 1px solid #aaa;
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
            border-radius: .5em;
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            background-color: #fff;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
                linear-gradient(to bottom, #eee 0%, #ddd 100%);
            background-repeat: no-repeat, repeat;
            /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
            background-position: right .7em top 50%, 0 0;
            /* icon size, then gradient */
            background-size: .65em auto, 100%;
        }

        /* Hide arrow icon in IE browsers */
        .select-css::-ms-expand {
            display: none;
        }

        .select-css:hover {
            border-color: #888;
        }

        .select-css:focus {
            border-color: #aaa;
            box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
            box-shadow: 0 0 0 3px -moz-mac-focusring;
            color: #222;
            outline: none;
        }

        .select-css option {
            font-weight: normal;
        }

        footer {
            position: sticky;
            top: 100vh;
            padding: 10px 20px;
            background-color: #bbb;
            color: #555;
            font-size: 11px;
        }

        footer a {
            color: #444;
            text-decoration: none;
        }

        footer b,
        footer b a {
            color: #111;
        }

        .data-display {
            padding: 20px;
        }


        .autocomplete {
            display: flex;
            position: relative;
            /* width: 300px; */
        }

        #search-input {
            width: 500px;
            padding: 8px;
            font-size: 16px;
        }

        #sku-input {
            width: 100px;
            padding: 8px;
            font-size: 16px;
        }

        #search-results {
            position: absolute;
            list-style: none;
            margin: 40px 0 0 0;
            padding: 0;
            width: 500px;
            max-height: 250px;
            overflow-y: auto;
            border: 1px solid #ccc;
            border-top: none;
            display: none;
            border-radius: 8px;
            background: #fbfbfb;
        }

        #search-results li {
            padding: 8px;
            cursor: pointer;
        }

        #search-results li:hover {
            background-color: #f0f0f0;
        }

        .nav-menu {
            display: flex;
            padding: 20px 0;
            font-size: 11px;
        }

        .top-nav {
            display: flex;
            text-transform: uppercase;
            padding: 0 20px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
            line-height: 8px;
            text-decoration: none;
        }

        .top-nav:hover,
        .top-nav.selected:hover {
            color: #fff;
        }

        .top-nav:hover>svg>path,
        .top-nav.selected:hover>svg>path {
            fill: #fff;
        }

        .top-nav.selected {
            color: #eeff38;
        }

        .top-nav.selected>svg>path {
            fill: #eeff38;
        }

        .top-nav:hover>svg>#mag-glass,
        .top-nav.selected:hover>svg>#mag-glass {
            fill: none;
            stroke: #fff;
        }

        .top-nav.selected>svg>#mag-glass {
            fill: none;
            stroke: #eeff38;
        }

        .top-nav:not(.top-nav:first-child) {
            cursor: pointer;
        }

        .data-display:not(.selected),
        #loading-hidden {
            display: none;
        }

        #loading-show {
            display: flex;
            justify-content: center;
            height: 20vh;
            align-items: center;
        }
        
        @media print {
            .pagebreak {
                clear: both;
                page-break-after: always;
            }
        }
