.chart-drop-container{
    position: absolute;
    right: 100%;
    width: 65%;
    height: 30%;
    top: 20%;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(0, 255, 213, 0.151);
    border-radius: 10px;
}

.chart-info-container{
    position: absolute;
    height: 80%;
    width: 50%;
    right: 170%;
    top: 20%;
    padding-left: 5%;

    overflow: hidden;
    overflow-y: auto;
    pointer-events: none;
}
.chart-info{
    position: absolute;
    left: 0;

    width:95%;
    height:25%;
    box-sizing: border-box;
    display: flex;
}

.no-scrollbar::-webkit-scrollbar{
    width: 2px;
}
.no-scrollbar::-webkit-scrollbar-thumb{
    background-color: transparent
}
.no-scrollbar::-webkit-scrollbar-track{
    background: transparent;
}
.chart-drop{
    position: absolute;
    left: 5%;
    top: 0%;

    width: 90%;
    height: 70%;
    margin-top: 10%;
    border: dashed 3px rgb(255, 255, 255);
    border-radius: 10px;
    font-size: 10vh;
    font-family: 'Saira Stencil One', cursive;
    color: white;
    z-index: -1;
    box-sizing: border-box;
}
.chart-drop::after{
    content: "Drop a chart here for tab view.";
    position: absolute;
    width: 100%;
    top: 100%;
    font-size: 2vh;
    color: white;
    font-family: 'Roboto', cursive;
    margin-top: 5px;
    text-align: center;
}
.chart-drop:hover{
    opacity: 1;
    filter: drop-shadow(0px 0px 20px white);
}
.shell-label-column{
    position: absolute;
    width: 50%;
    box-sizing: border-box;
    transform-origin: center right;
    bottom: 0;
}
.shell-label-name{
    color: white;
    font-family: 'Roboto', cursive;
    font-size: 2.1vh;
    margin-top: 3px;
    border-left: solid 1px white;
    padding-left: 10%;
    color: lightskyblue
}