html {
    width: 100%;
    height: 100%;
}

body {
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    width: 100%;
    height: 100%;
}

.page-container {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    height: 100%;
}

.page-content {
    flex: 1;
    margin: 5px;
}

.top-bar {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    background-color: white;
    width: 100%;
    /* height: 60px; */
    border-bottom: 1px solid black;
    flex: 0;
}

.top-bar > .logo img {
    width: 32px;
}

.top-bar > .title-box {
    width: auto;
    padding: 10px;
    flex: 1;
}

.top-bar > .saving-box {
    width: 60px;
    padding: 10px;
    flex: 0;
}

.top-bar > .login-box {
    padding: 0 10px ;
    /* flex: 0; */
}

.main-content {
    /* width: 800px; */
    margin-top: 20px;
    /* margin-left: auto;
    margin-right: auto; */
}

.main-content.centered {
    text-align: center;
}

.mind-map-list {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    border-collapse: collapse;
}

.mind-map-list th:nth-child(1)  {
    text-align: left;
    width: 60%;
    padding: 5px;
}
.mind-map-list th:nth-child(2)  {
    text-align: right;
    width: 15%;
    padding: 5px;
}
.mind-map-list th:nth-child(3)  {
    text-align: right;
    width: 15%;
    padding: 5px;
}
.mind-map-list td:nth-child(1)  {
    text-align: left;
    padding: 10px;
}
.mind-map-list td:nth-child(2)  {
    text-align: right;
    padding: 10px;
}
.mind-map-list td:nth-child(3)  {
    text-align: right;
    padding: 10px;
}

.mind-map-list tr:nth-child(even) {
    background-color: azure;
}
.mind-map-list tr:nth-child(odd) {
    background-color: aliceblue;
}


#statusLabel {
    font-weight: bold;
    height: 1em;
    padding: 6px;
    margin: 6px;
}

#statusLabel.success {
    background-color: greenyellow;
}

#statusLabel.saving {
    background-color: yellow;
}

#statusLabel.error {
    background-color: lightcoral;
}

#orderContainer > table {
    border: 1px solid black;
    border-spacing: 0;
}

.shipmentCode {
    font-weight: bold;
}

#orderContainer > table td {
    border-top: 1px solid black;
}
td.isbn {
    text-align: left;
    padding: 5px;
}

td.count {
    text-align: right;
    padding: 5px;
}

td.action {
    padding: 5px;
}

#barcode {
    height: 0;
    padding: 0;
    border: 0;
    outline: none !important;
    float: left;
}

#shipmentCode {
    padding: 6px;
}

table.report {
    border: 1px solid black;
    border-spacing: 0;
    border-collapse: collapse;
}

table.report td {
    border: 1px solid black;
}

table.items {
    border: 1px solid black;
    border-spacing: 0;
    border-collapse: collapse;
}

table.items button {
    margin: 3px;
}

table.items td {
    padding: 3px;
    border: 1px solid black;
}

table.items th {
    padding: 3px;
    border: 1px solid black;
}
