html body {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-height: 0;
    background-color: rgb(244, 245, 248);
}

.mainBodyDiv {
    display: grid;
    grid-template-columns: 75% 1fr;
    width: 100%;
    height: 100vh;
    min-height: 0;
    box-sizing: border-box;
    background-color: rgb(244, 245, 248);
    padding-left: 5%;
    
}

.traderListDiv {
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.leaderboardDivs {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 50%;
}

.tradersListDiv {
    flex-grow: 1;
    margin: 2px;
    border: 2px solid gray;
    overflow: auto;
}

.chartAndDataDiv {
    position: relative;
    display: flex;    
    flex-direction: column;
    height: 100%;
    background-color: white;
}

.dataDiv {
    border: 1px solid red;
    height: auto;
}

.pageTitles {
    margin-left: 10px;
    margin-bottom: 5px;
}

.overviewDataDiv {
    display: flex;
    border: 1px solid pink;
    padding: 0 3px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

p {
    margin-top: 2px;
    margin-bottom: 2px;
}
.chartDiv {
    position: relative;
    border: 1px solid blue;
    flex-grow: 1;
}

.otherFunctionDiv {
    border: 1px solid yellow;
    height: 10%
}












.mainDivContent {
    font-variant: all-petite-caps;
    background-color: white;
    margin-top: 5%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    padding: 12px;
}

.titleMainPage {
    color: rgb(183, 143, 94);
    text-align: center;
    font-size: 40px;
}

.divToSelectML {
    margin-bottom: 20px;
}

.divStepsClass {
    margin-bottom: 25px;
}

.divForMLInputs {
    border: 1px solid rgb(183, 143, 94);
    padding: 5px;
}

.divInnerInputContentArea {
    display: none;
}

.requiredWindowLabel {
    margin-left: 20px;
    border: 1px solid;
    padding: 2px;
}

.submissionBtn {
    text-align: center;
}

.submissionBtn > button {
    width: 50%;
    background-color: aqua;
    border-radius: 15px;
    padding: 5px;
}

.submissionBtn > button:hover {
    color: white;
    background-color: black;
}
