.BottomRightSidebar {
    background: linear-gradient(135deg, #FFD700, #F0A81E);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: calc((100vh - 90px) / 2);
    text-align: center;
    padding: 10px;
    color: #333;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: calc(70px + ((100vh - 90px) / 2) + 10px);
    right: 10px;
    z-index: 1;
}

.BottomRightSidebarContent {
    flex-grow: 1;
    margin-bottom: 5px;
}

.BottomRightSidebar h1 {
    font-size: 22px;
    margin: 10px 0;
    color: black;
}

.BottomRightSidebarPost {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 5px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.BottomRightSidebarPost h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.BottomRightSidebarPost p {
    margin: 0;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.BottomRightSidebar .SecondaryText {
    font-size: 10px;
    color: black;
    font-weight: 600;
    margin-top: 5px;
}

.BottomRightSidebarPost {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.BottomRightSidebarPost:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
