/* Right Sidebar Styles */

.right-sidebar {
    transition: all 0.3s ease;
}

.right-sidebar .card-style {
    border-radius: 15px;
    overflow: hidden;
}

.right-sidebar-header {
    padding: 15px 0 0 15px;
}

.sticky-top-sidebar {
    position: sticky;
    top: 80px;
    z-index: 100;
}

/* User List Styles */
.user-list a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 10px;
}

.user-list a:hover {
    background-color: rgba(103, 119, 239, 0.05);
    transform: translateX(5px);
}

/* Trending Topic Chips */
.chip {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

.chip-small {
    font-size: 11px;
    padding: 3px 12px;
}

.bg-highlight {
    background-color: #6777ef;
}

/* Recent Posts Styles */
.recent-posts a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 10px;
    display: block;
}

.recent-posts a:hover {
    background-color: rgba(103, 119, 239, 0.05);
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .right-sidebar {
        display: none;
    }
}
