#dashboard-header {
    background: lightgrey;
    width: 100vw;
    height: 5vh;
    line-height: 5vh;
    padding-left: 2vw;
    position: relative;
}

.dashboard-form-tabs-selected {
    border-bottom: 0.7vh solid rgb(59, 151,211) !important;
}

.dashboard-form-tab {
    display: inline-block;
    border-bottom: transparent;
    min-width: 10vw;
    margin-right: 2vw;
    height: 5vh;
    font-weight: 500;
    font-size: 2em;
    text-align: center;
}

    .dashboard-form-tab:hover {
        border-bottom: 0.7vh solid rgb(59, 151,211);
        cursor: pointer;
    }

    .dashboard-form-tab > img {
        width: 3vh;
        height: 3vh;
        margin-right: 0.5vw;
    }

.button-disabled {
    background: grey;
}

@media only screen and (max-width: 1100px) {
    #file-upload-btn {
        font-size: 0.6em;
    }
}

@media only screen and (max-width: 600px) {
    #file-upload-btn {
        font-size: 0.4em;
    }
}

#dashboard-form {
    position: relative;
    height: 85vh;
    width: 100vw;
    overflow-y: hidden;
    border-bottom: 1px solid rgb(138, 138, 138);
    display: flex;
}

    #dashboard-form > .left-section {
        flex: 2;
        border-right: 1px solid rgb(138, 138, 138);
    }

    #dashboard-form > .right-section {
        flex: 5;
        border-right: 1px solid rgb(138, 138, 138);
    }

.left-section > .form-section-title {
    font-size: 2em;
    font-weight: 600;
    padding: 1vh 1vw;
    border-bottom: 1px solid rgb(138, 138, 138);
}

.left-section > .form-section-header {
    font-size: 1.8em;
    font-weight: 400;
    color: rgb(161, 161, 161);
    padding: 1vh 1vw;
    border-bottom: 1px solid rgb(138, 138, 138);
}
.left-section .scrollable-section {
    max-height: 38vh;
    overflow-y: auto;
}

.form-section-row {
    font-size: 1.8rem;
    font-weight: 300;
    padding: 0.8vh 1vw;
    display: flex;
}

    .form-section-row label {
        flex: 1;
        font-size: inherit;
        max-width: 50%;
    }

    .form-section-row .input-col {
        flex: 1;
        width: 50%;
        max-width: 50%;
    }

    .form-section-row .value-label {
        text-align: right;
    }

    .form-section-row input {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .form-section-row select {
        font-size: inherit;
        flex: 1;
        padding: 1px;
        margin: 0; 
        max-width: 100%; 
    }
    .form-section-row .date-picker {
        display: inline-block;
        border: 1px solid rgb(170, 170, 170);
        padding: 4px;
        flex: 1;
        text-align: left;
        min-height: 2.8vh;
        width: 100%;
    }

    .form-section-row .input-error {
        border: 1px solid red;
    }

    .form-section-row .input-error-label {
        color: red;
        font-size: 1rem;
    }

.right-section .form-section-tabs {
    font-size: 2em;
    font-weight: 600;
    border-bottom: 1px solid rgb(138, 138, 138);
}

.form-section-tabs > div {
    display: inline-block;
    padding: 1vh 1vw;
    min-width: 10vw;
    text-align: center;
    cursor: pointer;
}

.form-section-tabs > .first-tab-selected {
    border-right: 1px solid rgb(138, 138, 138);
    box-shadow: 0px 2px white, 2px 0px 1px grey;
}

.form-section-tabs > .other-tab-selected {
    border-left: 1px solid rgb(138, 138, 138);
    border-right: 1px solid rgb(138, 138, 138);
    box-shadow: 0px 2px white, 2px 0px 1px grey;
}

.right-section .from-section-row-traveler {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(138, 138, 138);
    padding: 2vh 3vw;
    position: relative;
}

.right-section .form-section-content {
    max-height: 80vh;
    overflow-y: auto;
}

.from-section-row-traveler > .left-col {
    flex: 1;
    margin-right: 2vw;
}

.from-section-row-traveler > .right-col {
    flex: 1;
}

.from-section-row-traveler .action-btns-footer {
    width: 100%;
    text-align: right;
}

.action-btns-footer > button {
    background: transparent;
}

    .action-btns-footer > button > img {
        width: 2vh;
        height: 2vh;
    }

    .action-btns-footer > button > span {
        margin-left: 0.5vw;
        font-weight: 500;
        height: 3vh;
        line-height: 3vh;
    }

.upload-btn-wrapper {
    position: relative;
    display: inline-block;
    height: 3vh;
}

    .upload-btn-wrapper > button {
        min-width: 5vw;
        height: 3vh;
        border: none;
        background: rgb(2, 80, 151);
        color: white;
        font-weight: bold;
        cursor: pointer;
        font-size: 1.2rem;
    }

    .upload-btn-wrapper > input {
        position: absolute;
        width: 1vw;
        height: 1vh;
        left: 0;
        top: 0;
        opacity: 0;
        cursor: pointer;
    }

#dashboard-form-footer {
    position: absolute;
    bottom: 0;
    height: 4vh;
    line-height: 3vh;
    padding: 0.5vh 0;
    width: 100vw;
    margin: 0 auto;
}

    #dashboard-form-footer > button {
        margin-left: 1vw;
    }

    #dashboard-form-footer > #submit {
        float: right;
        margin-right: 1vw;
        background: rgb(0, 79, 152);
        color: white;
        font-weight: 600;
    }

/* #dashboard-form-function-row{
    width: 54vw;
    height: 5vh;
    line-height: 3vh;
    padding: 1vh 0;
    margin: 0 auto;
    text-align: right;
}
#dashboard-form-function-row>button{
    float: right;
    height: 3vh;
    margin-left: 1vw;
    padding: 0 10px;
}

#dashboard-form-grid{
    height: 61vh;
    width: 65vw;
    margin: 0 auto;
    overflow-y: auto;
    border: 1px solid black;
    padding-top: 1vh;
} 
.dashboard-form-row{
    padding: 0 1vw;
}
.dashboard-form-row-label{
    text-align: left;
    width: 53vw;
    padding-left: 1vw;
    font-size: 1.2em;
    margin-top: 2vh;
}
.dashboard-form-section{
    margin: 0 auto;  
    padding: 1vh 0;
    margin-bottom: 2vh;
}
.dashboard-form-one-passenger{
    margin: 0 auto; 
    width: 95%;
    padding: 1vh 1vw;
    border: 1px solid black;
    position: relative;
    margin-bottom: 1vh;
}
.dashboard-form-one-passenger-delete{
    position: absolute;
    right: 0.1vw;
    top: 0.1vh;
    width: 1.5vw;
    height: 1.5vw;  
    line-height: 1.5vw;
    padding: 0;     
}
.dashboard-form-row-passenger{
    margin: 0 auto;  
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 1vh;
}
.dashboard-form-column-passenger{
    flex:1;
    max-width: 10vw;   
    text-align: left;   
}
.dashboard-form-column-passenger-large{
    flex:2;
    max-width: 15vw; 
    text-align: left; 
}
.dashboard-form-column-passenger-larger{
    flex:3;
    max-width: 20vw;  
    text-align: left;
}
.dashboard-passenger-label{
    width: auto;  
    font-weight: bold;
}
.dashboard-passenger-input{
    max-width: 90%;
}
.dashboard-passenger-select{
    font-size: inherit;
    padding: 1px;
    margin: 0;    
} */
