html { height: 100vh; }
body { height: 100%; margin: 0; }

.login-centered {
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    align-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.login-form > * {
    margin: 0.5em;
}

.page-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-container .header {
    display: flex;
    justify-content: space-between;
    height: 70px;
    border-bottom: black solid 1px;
    padding: .5em 1em;
}

.header-text {
    display: flex;
    align-items: center;
}

.page-container .header img {
    max-height: 100%;
}

.page-container .content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: black solid 1px;
    padding: 1em;
    overflow: hidden;
}
.columns-container {
    display: flex;
    height: 100%
}

.columns-container > div:not(.first-step) {
    padding: 1em;
}

@media screen and (max-width: 1400px) {
    .first-step {
        width: 15% !important;
    }
}

.first-step {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid black;
}
.first-step .gas {
    background-image: url("/static/img/Arlan2.png");
    border-bottom: 1px black solid;
}
.first-step .doc {
    background-image: url("/static/img/DockStation2.png");
}
.first-step > div {
    height: 50%;
    background-size: 43%;
    background-repeat: no-repeat;
    background-position: center;
}

.first-step > div .overlay {
    height: 100%;
    width: 100%;
}

.first-step > div.active .overlay{
    background-color: rgba(100, 100, 100, 0.3);
}

.first-step > div:not(.active) .overlay:hover{
    cursor: pointer;
    background-color: rgba(100, 100, 100, 0.1);
}

.second-step {
    flex-grow: 1;
    border-right: 1px solid black;
    overflow-y: auto;
}

.table-container {
    overflow-y: auto;
}

table.data {
    width: 100%;
}

table.data th {
    text-align: center;
    background-color: #f2f2f2;
}

table.data tr:hover {
    background-color: aliceblue;
    cursor: pointer;
}

.third-step {
    width: 37%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.third-step table.detail-data {
    width: 100%;
    margin-bottom: 7px;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 1em;
}

.row .one3rd {
    width: 33%;
}

.row .fourty {
    width: 40%;
}

.row .rest {
    flex-grow: 1;
}

.row > div {
    margin-right: 2px;
}

tr .value {
    padding: .2em;
    border: 1px solid black;
    margin-top: 0.1em;
    text-align: center;
}

td.editable {
    text-align: left !important;
}

td.editable input, td.editable textarea {
    width: 100%;
    box-sizing: border-box;
}

.dock-settings {
    margin-top: 3em;
}

.dock-settings > div {
    margin: 0.8em;
}

.dock-settings input[type="text"] {
    width: 40px;
}

.dock-settings table {
    width: 100%;
}

.with-borders {
    border: 1px solid black;
}

.header-lg {
    font-size: 1.2em;
    font-weight: 800;
}

.header-sm {
    font-size: 1.1em;
    font-weight: 800;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-15 {
    margin-bottom: 15px;
}

.p-5 {
    padding: 5px;
}

.xlsx-container {
    margin-top: 15px;
    display: flex;
    justify-content: end;
}

.center {
    text-align: center;
}
