@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@300;400;700&display=swap');

:root {
    /*dark tones*/
    --nord0: #2E3440;
    --nord1: #3B4252;
    --nord2: #434C5E;
    --nord3: #4C566A;
    /*light tones*/
    --nord4: #D8DEE9;
    --nord5: #E5E9F0;
    --nord6: #ECEFF4;
    /*blue tones*/
    --nord7: #8FBCBB;
    /*highlight*/
    --nord8: #88C0D0;
    /*primary*/
    --nord9: #81A1C1;
    /*secondary*/
    --nord10: #5E81AC;
    /*tertiary*/
    /*special tones*/
    --nord11: #BF616A;
    /*error*/
    --nord12: #D08770;
    /*danger*/
    --nord13: #EBCB8B;
    /*warning*/
    --nord14: #A3BE8C;
    /*success*/
    --nord15: #B48EAD;
    /*uncommon function*/
}

body {
    overflow: auto;
}

/* width */
::-webkit-scrollbar {
    width: 0.5vw;
    border-radius: 0.3rem;

}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 0.3rem;

}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
}


section, #fileOpen {
    max-width: 80vw;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 4rem;
    border-radius: 0.5rem;
}

#fileOpen {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fileOpen p {
    margin: auto;
    width: 100%;
    align-content: center;
    text-align: center;
}

#dashGUI {
    display: none;
    height: 70vh;
}

#barView {
    width: 40vw;
    border-radius: 0.5rem;
    color: var(--nord0);
    height: 100%;
    float:left;
}

#totalBar {
    position: relative;
    height: 3rem;
    font-weight: 800;

}

#normalBarWrapper {
    height: 80%;
    overflow-y: auto;
    width: 40vw;
    padding-right: 0.5vw;
}

.bar {
    height: 2rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-radius: 0.5rem;
    /* width: 100%; */
    position: relative;
}

.barPercent {
    position: absolute;
    right: 0.5rem;
}

#totalChartWrapper{
    height:40vh;
    width:35vw;
    float:right;
    padding: 1rem;
    border-radius: 0.5rem;
}
#normalChartWrapper{
    margin-top: 2vh;
    height:20vh;
    width:35vw;
    float:right;
    padding: 1rem;
    border-radius: 0.5rem;
}