.news-feed-container{
    position: absolute;
    width: 500px;
    height: 250px;
    top: 0;
    right: 0%;
    transform: scale(0.8);
    transform-origin: top right;
    z-index: 10000;
    display: none;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.082);
    filter: saturate(3);
}
.news-feed-container:hover{
    height: auto;
    background-color: black;
}
.news-feed{
    position: absolute;
    width: 100%;
    height: 1000px;
    left: 0;
    top:0;
}
.data-feed-container{
    position: absolute;
    z-index: 1000;
    top: 10%;
    left: 100%;
    width: 50%;

    height: 80%;
    overflow: hidden;
    overflow-y: auto;
    pointer-events: none;
}
.data-feed-container::-webkit-scrollbar-thumb{
    background-color: transparent;
}
.feed-label-container{
    color: white;
    font-size: 2vh;
    font-family: 'Saira Stencil One', cursive;
    visibility: hidden;
}
.trade-history-container{
    position: absolute;
    z-index: 1000;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

}
.trade-history-container::-webkit-scrollbar-thumb{
    background: transparent;
}

.trade-history{
    position: absolute;
    left: 1.5%;
    top: 0%;
    height: 100%;
    width: 100%;
    z-index: 100;
    overflow: auto;
    filter: saturate(3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}
.trade-history::-webkit-scrollbar{
    background: transparent;
}
.trade-history::-webkit-scrollbar-track{
    background: transparent;
}
.trade-history::-webkit-scrollbar-thumb{
    background: transparent;
}
.trade{
    width: 100%;
    display: flex;
    padding: 5px;
    font-size: 1.8vh;
    font-family:'Roboto', cursive;
    margin-top: 0.5%;
    box-sizing: border-box;
    color: white;
    font-weight: 900;
    font-family: 'Roboto', cursive;
}
.buyT{
    text-shadow: 0px 0px 10px black;
}
.sellT{
    text-shadow: 0px 0px 10px black;
}
