.StudentStoriesLeftSideBar {
    position: fixed;
    top: 70px;
    left: 10px;
    bottom: 10px;
    width: 300px;
    z-index: 2;
    background-color: #ffffff;
    padding: 10px;
    padding-bottom: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: scroll;
    box-sizing: border-box;
}

.StudentStoriesLeftSideBar::-webkit-scrollbar {
    width: 8px;
}

.StudentStoriesLeftSideBar::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.StudentStoriesLeftSideBar::-webkit-scrollbar-thumb {
    background: #f8f9fa;
    border-radius: 10px;
}

.StudentStoriesLeftSideBar:hover::-webkit-scrollbar-thumb {
    background: #d4d4d4;
}

.StudentStoriesLeftSideBar::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.StudentStoriesLeftSideBarContent {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.StudentStoriesLeftSideBarTopic {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.StudentStoriesLeftSideBarTopicIcon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.StudentStoriesLeftSideBarTopicContent {
    display: flex;
    flex-direction: column;
}

.StudentStoriesLeftSideBarTitle {
    font-family: StudentStoriesFont;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.StudentStoriesLeftSideBarDescription {
    font-family: StudentStoriesFont;
    font-size: 15px;
    color: #666;
    font-weight: normal;
}
