
.left-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 65px;

    width: 20%;

    display: flex;
    flex-direction: column;
    gap: 1px;

    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    transition: all 0.25s;

    z-index: 1000;
}
    

.left-bar:hover {
    scrollbar-width:thin;
}


.left-bar .section {
    margin-left: 5px;
}

.thread-link {
    transition: all 0.25s;
    width: auto;
    display: inline;
    color: darkgrey;
}

.thread-link:hover {
    cursor: pointer;
    font-size: larger;
}

.thread-link:active {
    cursor: grab;
    opacity: 0.8;
}

.thread-name {
    font-size: large;
    transition: all 0.25s;
}

.thread-name:hover{
    font-size: larger;
}

.thread-description {
    font-size: smaller;
}

@media (max-width:600px) {
    .thread-link {
        font-size: 10px;
    }

    .thread-name {
        font-size: 10px
    }

    .thread-description {
        font-size: 10px
    }
}