.subheader{
    position: fixed;
    top: 55px;
    right: 0;
    left: 270px;
    margin-left: -30px;
    padding-left: 18px;
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    background-color: rgb(33, 33, 33);
    border-bottom-style: solid;
    border-bottom-color: rgb(51, 51, 51);
    border-width: 1px;
    padding-top: 11px;
    padding-bottom:11px;
    z-index: 99;
    overflow-x: auto;
    transition: left 0.4s;
}
.subheader-button{
    font-size: 14px;
    font-weight: 400;
    color: white;
    background-color: rgb(51, 51, 51);
    border-style: solid;
    border-color: rgb(61, 61, 61);
    border-width: 1px;
    border-radius: 20px;
    padding: 6px 13px 6px 13px;   
}
.subheader-button:hover{
    cursor: pointer;
}
.subheader p{  
    font-size: 15px;
    font-weight: 500; 
    white-space: nowrap;
}
.subheader::-webkit-scrollbar {
    height: 1px;  
}
.subheader::-webkit-scrollbar-thumb {  
    border-radius: 30px;
    background: rgb(111, 111, 111);  
}
