.right-sidebar {
    position: fixed;
    right: 0;
    top: 64px;
    bottom: 0;
    width: 320px;
    padding: 20px;
    overflow-y: auto;
    z-index: 10;
}

.right-sidebar::-webkit-scrollbar {
    width: 6px;
}

.right-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.right-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.right-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 191, 36, 0.3);
}

@media (max-width: 1399px) {
    .right-sidebar {
        display: none;
    }
}

.sidebar-section {
    background: linear-gradient(180deg, #1c1f25 0%, #181b20 100%);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    border-color: rgba(251, 191, 36, 0.15);
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.08);
}

.sidebar-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-section-title svg {
    width: 18px;
    height: 18px;
    stroke: #fbbf24;
    stroke-width: 2;
    fill: none;
}

.sidebar-section-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-section-link:hover {
    color: #fbbf24;
}

.sidebar-user-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-user-item:hover {
    background: rgba(251, 191, 36, 0.06);
    border-color: rgba(251, 191, 36, 0.15);
    transform: translateX(-2px);
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 191, 36, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-user-item:hover .sidebar-user-avatar {
    border-color: #fbbf24;
    transform: scale(1.05);
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-user-username {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-follow-btn {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-follow-btn:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    transform: translateY(-1px);
}

.sidebar-follow-btn.following {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.sidebar-follow-btn.following:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.sidebar-empty {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.sidebar-empty svg {
    width: 32px;
    height: 32px;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 8px;
}
