html, body {
    margin: 0 3%;
    padding: 0;
    border: 0;
    background-color: rgb(30, 33, 48);
}
h1 {
    font-size: 2.5rem;
    font-weight: normal;
}
h4 {
    font-size: 2rem;
    margin: 0px 0px;
}
h5 {
    font-size: 1rem;
    margin: 0px 0px;
}
#header-text {
    color: white;
    margin: 30px 0px;
}
#tab {
    overflow: hidden;
    display: flex;
    background-color: rgb(30, 33, 48);
}
#tab button {
    flex: 1;
    background-color: rgb(22, 26, 40);
    border: none;
    cursor: pointer;
    margin: 10px 3px;
    padding: 14px 16px;
    transition: 0.3s;
    color: white;
}
#tab button:hover {
    background-color: white;
    color: rgb(22, 26, 40);
}
#tab button.active {
    border-bottom: 3px solid rgb(145, 223, 210);
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
}


/* tab1 - service */
#service {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: rgb(22, 26, 40);
    margin: 10px 0px;
    border: none;
    color: white;
}
.service-title {
    margin: 10px 0px;
}
.service-sub-title {
    margin: 7px 0px;
}
.fade-alert-show li {
    font-size: 110%;
    margin: 3px 0px;
}
#service-row {
    display: flex;
    flex-direction: row;
}
#service-col1 {
    flex: 2;
}
#service-col2 {
    flex: 1;
}
.dash-graph {
    width: 100%;
    height: 50vh;
}

.dash-geometry-graph {
    width: 100%;
    height: 65vh;
}

/* tab2 - status */
#status {
    flex-direction: column;
    background-color: rgb(22, 26, 40);
    margin: 10px 0px;
    border: none;
    color: white;
}
.row1 {
    display: flex;
}

.row2 {
    display: flex;
    flex-direction: row;
}

.col1, .col2 {
    flex: 1;
}

#operating-col {
    height: 65vh;
}

.fade-alert-show2 {
    margin-top: 3%;
    margin-left: 3%;
}

/* tab3 - requests */
#requests {
    flex-direction: column;
    background-color: rgb(22, 26, 40);
    margin: 10px 0px;
    border: none;
    color: white;
}
#num1 > li {
    font-size: 1.3rem;
}
#requests-col1, #requests-col2 {
    display: flex;
    flex-direction: row;
}
#requests-col1 > div, #requests-col2 > div {
    flex: 1;
}
#num2 {
    display: flex;
    flex-direction: column;
}
#num2-row1, #num2-row2 {
    flex: 1;
    display: flex;
}
#num2-row1 > div, #num2-row2 > div {
    flex: 1;
    display: flex;
    flex-direction: row;
}
#num2-row1 > div > div, #num2-row2 > div > div {
    flex: 1;
}

.js-plotly-plot {
    width: 100%;
    height: 100%;
}
.js-plotly-plot > iframe{
    width: 100%;
    height: 100%;
}